grave_scorpius6.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : grave_scorpius4_1.lua
  3. Script Purpose : Waypoint Path for grave_scorpius4_1.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 05:19: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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 211.62, -6.86, -79.19, 2, 0)
  18. MovementLoopAddLocation(NPC, 207.87, -6.95, -92.03, 2, 0)
  19. MovementLoopAddLocation(NPC, 190.68, -6.82, -92.33, 2, 0)
  20. MovementLoopAddLocation(NPC, 196.53, -7.03, -89.79, 2, 0)
  21. MovementLoopAddLocation(NPC, 198.37, -6.31, -69.78, 2, 0)
  22. MovementLoopAddLocation(NPC, 198.41, -6.99, -57.12, 2, 0)
  23. MovementLoopAddLocation(NPC, 213.74, -6.88, -56.22, 2, 0)
  24. MovementLoopAddLocation(NPC, 232.46, -6.45, -39.62, 2, 0)
  25. MovementLoopAddLocation(NPC, 256.21, -6.91, -38.48, 2, 0)
  26. MovementLoopAddLocation(NPC, 232.46, -6.45, -39.62, 2, 0)
  27. MovementLoopAddLocation(NPC, 213.74, -6.88, -56.22, 2, 0)
  28. MovementLoopAddLocation(NPC, 198.41, -6.99, -57.12, 2, 0)
  29. MovementLoopAddLocation(NPC, 198.37, -6.31, -69.78, 2, 0)
  30. MovementLoopAddLocation(NPC, 196.53, -7.03, -89.79, 2, 0)
  31. MovementLoopAddLocation(NPC, 190.68, -6.82, -92.33, 2, 0)
  32. MovementLoopAddLocation(NPC, 207.87, -6.95, -92.03, 2, 0)
  33. MovementLoopAddLocation(NPC, 211.62, -6.86, -79.19, 2, 0)
  34. end