charlene.lua 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. --[[
  2. Script Name : charlene.lua
  3. Script Purpose : Waypoint Path for charlene.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 04:14:49 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 832.06, -23.31, 45.72, 2, 0)
  19. MovementLoopAddLocation(NPC, 879.32, -25.43, 35.83, 2, 0)
  20. MovementLoopAddLocation(NPC, 903.88, -25.37, 13.02, 2, 0)
  21. MovementLoopAddLocation(NPC, 932.38, -25.55, 26.75, 2, 0)
  22. MovementLoopAddLocation(NPC, 948.25, -25.5, 32.06, 2, 0)
  23. MovementLoopAddLocation(NPC, 962.44, -25.47, 16.52, 2, 0)
  24. MovementLoopAddLocation(NPC, 978.08, -25.01, 15.7, 2, 0)
  25. MovementLoopAddLocation(NPC, 994.13, -25.12, 16.11, 2, 0)
  26. MovementLoopAddLocation(NPC, 1000.46, -25.82, 26.08, 2, 0)
  27. MovementLoopAddLocation(NPC, 995.28, -25.11, 14.52, 2, 0)
  28. MovementLoopAddLocation(NPC, 964.46, -25.46, 14.05, 2, 0)
  29. MovementLoopAddLocation(NPC, 948.82, -25.5, 30.55, 2, 0)
  30. MovementLoopAddLocation(NPC, 907.29, -25.46, 14.26, 2, 0)
  31. MovementLoopAddLocation(NPC, 909, -25.41, -1.48, 2, 0)
  32. MovementLoopAddLocation(NPC, 891.19, -25.49, -26.78, 2, 0)
  33. MovementLoopAddLocation(NPC, 893.37, -25.52, -23.76, 2, 0)
  34. MovementLoopAddLocation(NPC, 906.58, -25.41, -25.59, 2, 0)
  35. MovementLoopAddLocation(NPC, 899.27, -25.41, -49.86, 2, 0)
  36. MovementLoopAddLocation(NPC, 862.97, -25.42, -68.34, 2, 0)
  37. MovementLoopAddLocation(NPC, 864.82, -25.44, -86.64, 2, 0)
  38. MovementLoopAddLocation(NPC, 855.5, -25.48, -69.74, 2, 0)
  39. MovementLoopAddLocation(NPC, 813.77, -20.86, -65.23, 2, 0)
  40. MovementLoopAddLocation(NPC, 746.74, -21.28, -21.97, 2, 0)
  41. MovementLoopAddLocation(NPC, 722.98, -21.38, -36.4, 2, 0)
  42. MovementLoopAddLocation(NPC, 696.28, -20.64, -66.63, 2, 0)
  43. MovementLoopAddLocation(NPC, 720.45, -20.86, -115.5, 2, 0)
  44. MovementLoopAddLocation(NPC, 696.28, -20.64, -66.63, 2, 0)
  45. MovementLoopAddLocation(NPC, 722.98, -21.38, -36.4, 2, 0)
  46. MovementLoopAddLocation(NPC, 746.74, -21.28, -21.97, 2, 0)
  47. MovementLoopAddLocation(NPC, 813.77, -20.86, -65.23, 2, 0)
  48. MovementLoopAddLocation(NPC, 855.5, -25.48, -69.74, 2, 0)
  49. MovementLoopAddLocation(NPC, 864.82, -25.44, -86.64, 2, 0)
  50. MovementLoopAddLocation(NPC, 862.97, -25.42, -68.34, 2, 0)
  51. MovementLoopAddLocation(NPC, 899.27, -25.41, -49.86, 2, 0)
  52. MovementLoopAddLocation(NPC, 906.58, -25.41, -25.59, 2, 0)
  53. MovementLoopAddLocation(NPC, 893.37, -25.52, -23.76, 2, 0)
  54. MovementLoopAddLocation(NPC, 891.19, -25.49, -26.78, 2, 0)
  55. MovementLoopAddLocation(NPC, 909, -25.41, -1.48, 2, 0)
  56. MovementLoopAddLocation(NPC, 907.29, -25.46, 14.26, 2, 0)
  57. MovementLoopAddLocation(NPC, 948.82, -25.5, 30.55, 2, 0)
  58. MovementLoopAddLocation(NPC, 964.46, -25.46, 14.05, 2, 0)
  59. MovementLoopAddLocation(NPC, 995.28, -25.11, 14.52, 2, 0)
  60. MovementLoopAddLocation(NPC, 1000.46, -25.82, 26.08, 2, 0)
  61. MovementLoopAddLocation(NPC, 994.13, -25.12, 16.11, 2, 0)
  62. MovementLoopAddLocation(NPC, 978.08, -25.01, 15.7, 2, 0)
  63. MovementLoopAddLocation(NPC, 962.44, -25.47, 16.52, 2, 0)
  64. MovementLoopAddLocation(NPC, 948.25, -25.5, 32.06, 2, 0)
  65. MovementLoopAddLocation(NPC, 932.38, -25.55, 26.75, 2, 0)
  66. MovementLoopAddLocation(NPC, 903.88, -25.37, 13.02, 2, 0)
  67. MovementLoopAddLocation(NPC, 879.32, -25.43, 35.83, 2, 0)
  68. MovementLoopAddLocation(NPC, 832.06, -23.31, 45.72, 2, 0)
  69. end