amorakdevourer133769423.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer133769423.lua
  3. Script Purpose : Waypoint Path for amorakdevourer133769423.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:53
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "3")
  10. SpawnSet(NPC, "difficulty", "2")
  11. waypoints(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, 219.89, -0.88, -58.64, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 218.04, -1.47, -65.39, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 216.93, -1.02, -70.25, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 219.67, -1.45, -61.98, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 203.39, -0.73, -86.78, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 216.49, -1.01, -70.51, 2, 0)
  26. MovementLoopAddLocation(NPC, 223.04, -1.38, -48.23, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 211.5, -0.76, -78.23, 2, math.random(14, 25))
  28. end