amorakdevourer133769425.lua 1006 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer133769425.lua
  3. Script Purpose : Waypoint Path for amorakdevourer133769425.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:58
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 221.91, -1.16, -68.46, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 219.03, -0.98, -69.77, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 217.89, -1.24, -68.19, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 214.91, -0.77, -81.2, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 222.07, -2.14, -46.27, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 222.06, -0.88, -49.9, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 219.21, -1.47, -62.53, 2, math.random(14, 25))
  25. end