aneedlefang427594.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427594.lua
  3. Script Purpose : Waypoint Path for aneedlefang427594.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:18:59
  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, 80.57, -12.13, -29.41, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 93.48, -12.1, -29.47, 2, 0)
  19. MovementLoopAddLocation(NPC, 101.65, -12.9, -29.5, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 81.65, -11.79, -11.88, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 85.53, -12.04, -23.3, 2, 0)
  22. MovementLoopAddLocation(NPC, 86.81, -12.11, -32.86, 2, 0)
  23. MovementLoopAddLocation(NPC, 84.42, -12.06, -43.09, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 76.79, -12.27, -40.71, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 102.27, -11.99, -32.77, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 101.21, -13.06, -26.51, 2, math.random(10, 20))
  27. end