grave_scorpius2.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : grave_scorpius2.lua
  3. Script Purpose : Waypoint Path for grave_scorpius2.lua
  4. Script Author : Devn00b
  5. Script Date : 06/24/2020 02:58:46 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 119.31, 0.02, -118.19, 2, 0)
  18. MovementLoopAddLocation(NPC, 124.43, 0.1, -128.55, 2, 0)
  19. MovementLoopAddLocation(NPC, 131.37, -0.09, -138.61, 2, 0)
  20. MovementLoopAddLocation(NPC, 129.86, 0.49, -155.9, 2, 0)
  21. MovementLoopAddLocation(NPC, 129.33, -0.01, -162.91, 2, 0)
  22. MovementLoopAddLocation(NPC, 128.54, -0.01, -165.56, 2, 0)
  23. MovementLoopAddLocation(NPC, 118.72, 0.64, -167.32, 2, 0)
  24. MovementLoopAddLocation(NPC, 106.4, -0.06, -173.35, 2, 0)
  25. MovementLoopAddLocation(NPC, 118.72, 0.64, -167.32, 2, 0)
  26. MovementLoopAddLocation(NPC, 128.54, -0.01, -165.56, 2, 0)
  27. MovementLoopAddLocation(NPC, 129.33, -0.01, -162.91, 2, 0)
  28. MovementLoopAddLocation(NPC, 129.86, 0.49, -155.9, 2, 0)
  29. MovementLoopAddLocation(NPC, 131.37, -0.09, -138.61, 2, 0)
  30. MovementLoopAddLocation(NPC, 124.43, 0.1, -128.55, 2, 0)
  31. MovementLoopAddLocation(NPC, 119.31, 0.02, -118.19, 2, 0)
  32. end