aneedlefang427593.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427593.lua
  3. Script Purpose : Waypoint Path for aneedlefang427593.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:18:32
  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, 35.05, -11.13, -76.96, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 32.47, -11.1, -83.94, 2, 0)
  19. MovementLoopAddLocation(NPC, 27.81, -11.04, -88.49, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 22.46, -12.06, -86.64, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 42.98, -12.02, -81.27, 2, 0)
  22. MovementLoopAddLocation(NPC, 49.43, -12.06, -77.74, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 68.31, -11.1, -45.84, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 75.36, -12.75, -43.66, 2, 0)
  25. MovementLoopAddLocation(NPC, 78.21, -12.95, -41.37, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 71.82, -12.12, -51.51, 2, 0)
  27. MovementLoopAddLocation(NPC, 58.64, -12.05, -70.23, 2, math.random(10, 20))
  28. end