amorakdevourer1587716.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587716.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587716.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:09:53
  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, 240.07, -1.72, -98.04, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 262.42, -1.16, -85.05, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 259.25, -1.51, -72.78, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 245.03, -1.09, -95.55, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 261.05, -1.52, -65.33, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 245.75, -1.17, -75.96, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 251.17, -1.48, -69.9, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 261.28, -1.52, -65.45, 2, 0)
  26. MovementLoopAddLocation(NPC, 265.29, -1.58, -57.84, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 250.06, -0.53, -87.9, 2, 0)
  28. MovementLoopAddLocation(NPC, 242.74, -1.44, -97.1, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 246.41, -0.19, -80.94, 2, 0)
  30. MovementLoopAddLocation(NPC, 251.35, -1.48, -73.67, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 244.14, -0.74, -80.36, 2, math.random(14, 25))
  32. end