grave_scorpius.lua 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : grave_scorpius.lua
  3. Script Purpose : Waypoint Path for grave_scorpius.lua
  4. Script Author : Devn00b
  5. Script Date : 06/24/2020 02:58:42 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, 106.63, -0.21, -174.31, 2, 0)
  18. MovementLoopAddLocation(NPC, 116.67, 0.01, -168.54, 2, 0)
  19. MovementLoopAddLocation(NPC, 131.56, 0.06, -164.47, 2, 0)
  20. MovementLoopAddLocation(NPC, 131.83, -0.05, -138.26, 2, 0)
  21. MovementLoopAddLocation(NPC, 128.77, 0.07, -129.77, 2, 0)
  22. MovementLoopAddLocation(NPC, 119.85, 0, -118.08, 2, 0)
  23. MovementLoopAddLocation(NPC, 128.77, 0.07, -129.77, 2, 0)
  24. MovementLoopAddLocation(NPC, 131.83, -0.05, -138.26, 2, 0)
  25. MovementLoopAddLocation(NPC, 131.56, 0.06, -164.47, 2, 0)
  26. MovementLoopAddLocation(NPC, 116.67, 0.01, -168.54, 2, 0)
  27. MovementLoopAddLocation(NPC, 106.63, -0.21, -174.31, 2, 0)
  28. end