amorakdevourer133769615.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer133769615.lua
  3. Script Purpose : Waypoint Path for amorakdevourer133769615.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:16:45
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "4")
  10. waypoints(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 161.27, -0.55, -194.19, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 153.23, -0.52, -189.05, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 155.68, -0.53, -197.14, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 157.57, -0.54, -198.42, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 143.61, 0.6, -180.46, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 148.66, 0.54, -184.72, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 135.88, -0.07, -175.95, 2, 0)
  26. MovementLoopAddLocation(NPC, 130.61, -0.01, -171.53, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 147.41, -0.5, -193.11, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 149.5, 0.24, -187.21, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 143.41, 0.29, -186.2, 2, math.random(14, 25))
  30. end