amorakdevourer428881.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428881.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428881.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:08:43
  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, 263.53, -4.15, 45.95, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 261.3, -4.35, 40.6, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 264.14, -4.45, 48.6, 2, 0)
  21. MovementLoopAddLocation(NPC, 264.2, -4.88, 62.62, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 266.32, -4.36, 58.49, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 263.5, -5.67, 64.27, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 264.09, -4.39, 48.06, 2, 0)
  25. MovementLoopAddLocation(NPC, 262.06, -4.11, 46.25, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 260.32, -4.43, 52.82, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 261.04, -4.05, 48.86, 2, 0)
  28. MovementLoopAddLocation(NPC, 265.31, -4.31, 47.13, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 266.31, -4.57, 55.67, 2, math.random(14, 25))
  30. end