amorakdevourer1587733.lua 985 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587733.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587733.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:46
  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, 211.04, -0.76, -92.72, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 203.83, -0.73, -93.09, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 208.08, -0.75, -80.46, 2, 0)
  21. MovementLoopAddLocation(NPC, 215.08, -0.86, -72.93, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 221.23, -3.4, -43.14, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 218.38, -0.79, -79.32, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 213.83, -0.77, -79.53, 2, math.random(14, 25))
  25. end