captsalty.lua 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. --[[
  2. Script Name : captsalty.lua
  3. Script Purpose : Waypoint Path for captsalty.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 03:52:17 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, 972.47, -25.45, 10.02, 4, 0)
  19. MovementLoopAddLocation(NPC, 961.84, -25.44, 9.71, 4, 0)
  20. MovementLoopAddLocation(NPC, 958.16, -25.44, 21.02, 4, 0)
  21. MovementLoopAddLocation(NPC, 949.01, -25.5, 30.17, 4, 0)
  22. MovementLoopAddLocation(NPC, 905.14, -25.38, 15.2, 4, 0)
  23. MovementLoopAddLocation(NPC, 880.26, -25.43, 30.05, 4, 0)
  24. MovementLoopAddLocation(NPC, 857.26, -25.5, 52.54, 4, 0)
  25. MovementLoopAddLocation(NPC, 838.21, -25.48, 85.91, 4, 0)
  26. MovementLoopAddLocation(NPC, 838.68, -25.47, 94.87, 4, 0)
  27. MovementLoopAddLocation(NPC, 839.47, -25.39, 89.55, 4, 0)
  28. MovementLoopAddLocation(NPC, 860.44, -25.44, 50.05, 4, 0)
  29. MovementLoopAddLocation(NPC, 892.88, -25.5, 52, 4, 0)
  30. MovementLoopAddLocation(NPC, 904.41, -25.37, -10.76, 4, 0)
  31. MovementLoopAddLocation(NPC, 891.99, -25.36, -56.95, 4, 0)
  32. MovementLoopAddLocation(NPC, 811.93, -20.4, -59.04, 4, 0)
  33. MovementLoopAddLocation(NPC, 780.24, -21.46, -57.02, 4, 0)
  34. MovementLoopAddLocation(NPC, 766.08, -20.64, 10.56, 4, 0)
  35. MovementLoopAddLocation(NPC, 724.78, -20.11, -0.22, 4, 0)
  36. MovementLoopAddLocation(NPC, 706.73, -20.82, -62.94, 4, 0)
  37. MovementLoopAddLocation(NPC, 700.29, -20.65, -68.06, 4, 0)
  38. MovementLoopAddLocation(NPC, 706.73, -20.82, -62.94, 4, 0)
  39. MovementLoopAddLocation(NPC, 724.78, -20.11, -0.22, 4, 0)
  40. MovementLoopAddLocation(NPC, 766.08, -20.64, 10.56, 4, 0)
  41. MovementLoopAddLocation(NPC, 780.24, -21.46, -57.02, 4, 0)
  42. MovementLoopAddLocation(NPC, 811.93, -20.4, -59.04, 4, 0)
  43. MovementLoopAddLocation(NPC, 891.99, -25.36, -56.95, 4, 0)
  44. MovementLoopAddLocation(NPC, 904.41, -25.37, -10.76, 4, 0)
  45. MovementLoopAddLocation(NPC, 892.88, -25.5, 52, 4, 0)
  46. MovementLoopAddLocation(NPC, 860.44, -25.44, 50.05, 4, 0)
  47. MovementLoopAddLocation(NPC, 839.47, -25.39, 89.55, 4, 0)
  48. MovementLoopAddLocation(NPC, 838.68, -25.47, 94.87, 4, 0)
  49. MovementLoopAddLocation(NPC, 838.21, -25.48, 85.91, 4, 0)
  50. MovementLoopAddLocation(NPC, 857.26, -25.5, 52.54, 4, 0)
  51. MovementLoopAddLocation(NPC, 880.26, -25.43, 30.05, 4, 0)
  52. MovementLoopAddLocation(NPC, 905.14, -25.38, 15.2, 4, 0)
  53. MovementLoopAddLocation(NPC, 949.01, -25.5, 30.17, 4, 0)
  54. MovementLoopAddLocation(NPC, 958.16, -25.44, 21.02, 4, 0)
  55. MovementLoopAddLocation(NPC, 961.84, -25.44, 9.71, 4, 0)
  56. MovementLoopAddLocation(NPC, 972.47, -25.45, 10.02, 4, 0)
  57. end