aneedlefang427587.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427587.lua
  3. Script Purpose : Waypoint Path for aneedlefang427587.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:16:44
  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, 48.9, -12.14, -78.5, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 65.65, -12.17, -74.83, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 72.51, -11.78, -52.63, 2, 0)
  20. MovementLoopAddLocation(NPC, 82.87, -12.6, -39.35, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 77.12, -10.41, -49.83, 2, 0)
  22. MovementLoopAddLocation(NPC, 74.59, -10.34, -57.83, 2, 0)
  23. MovementLoopAddLocation(NPC, 73.71, -10.71, -65.26, 2, 0)
  24. MovementLoopAddLocation(NPC, 71.34, -12.02, -72.21, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 76.78, -12.14, -69.68, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 51.26, -12.16, -65.14, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 55.41, -12.13, -64.72, 2, math.random(10, 20))
  28. end