cahptor.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : cahptor.lua
  3. Script Purpose : Waypoint Path for cahptor.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 06:29:07 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, 684.98, -20.52, 267.48, 2, 0)
  19. MovementLoopAddLocation(NPC, 673.17, -19.49, 229.65, 2, 0)
  20. MovementLoopAddLocation(NPC, 679.47, -19.74, 220.74, 2, 0)
  21. MovementLoopAddLocation(NPC, 687.3, -19.52, 214.86, 2, 0)
  22. MovementLoopAddLocation(NPC, 684.89, -19.4, 198.52, 2, 0)
  23. MovementLoopAddLocation(NPC, 699.29, -19.53, 194.03, 2, 0)
  24. MovementLoopAddLocation(NPC, 706.48, -19.53, 194.49, 2, 0)
  25. MovementLoopAddLocation(NPC, 779.39, -21.01, 180.01, 2, 0)
  26. MovementLoopAddLocation(NPC, 724.93, -19.8, 183.45, 2, 0)
  27. MovementLoopAddLocation(NPC, 685.04, -20.36, 163.73, 2, 0)
  28. MovementLoopAddLocation(NPC, 674.64, -21.1, 145.5, 2, 0)
  29. MovementLoopAddLocation(NPC, 677.14, -21.03, 143.08, 2, 0)
  30. MovementLoopAddLocation(NPC, 711.93, -20.36, 123.97, 2, 0)
  31. MovementLoopAddLocation(NPC, 677.14, -21.03, 143.08, 2, 0)
  32. MovementLoopAddLocation(NPC, 674.64, -21.1, 145.5, 2, 0)
  33. MovementLoopAddLocation(NPC, 685.04, -20.36, 163.73, 2, 0)
  34. MovementLoopAddLocation(NPC, 724.93, -19.8, 183.45, 2, 0)
  35. MovementLoopAddLocation(NPC, 779.39, -21.01, 180.01, 2, 0)
  36. MovementLoopAddLocation(NPC, 706.48, -19.53, 194.49, 2, 0)
  37. MovementLoopAddLocation(NPC, 699.29, -19.53, 194.03, 2, 0)
  38. MovementLoopAddLocation(NPC, 684.89, -19.4, 198.52, 2, 0)
  39. MovementLoopAddLocation(NPC, 687.3, -19.52, 214.86, 2, 0)
  40. MovementLoopAddLocation(NPC, 679.47, -19.74, 220.74, 2, 0)
  41. MovementLoopAddLocation(NPC, 673.17, -19.49, 229.65, 2, 0)
  42. MovementLoopAddLocation(NPC, 684.98, -20.52, 267.48, 2, 0)
  43. end