amorakdevourer133769585.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer133769585.lua
  3. Script Purpose : Waypoint Path for amorakdevourer133769585.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. SpawnSet(NPC, "size", "28.8")
  11. SpawnSet(NPC, "hp", 110)
  12. SpawnSet(NPC, "power", 55)
  13. waypoints(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end
  21. function waypoints(NPC)
  22. MovementLoopAddLocation(NPC, 94.1, -0.31, -163.23, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 77.89, -0.09, -162.92, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 97.46, -0.99, -158.93, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 80.98, -1.3, -150.73, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 72.13, 0.07, -172.24, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 80.16, -0.25, -180.5, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 99.37, -0.52, -173.88, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 80.74, -1.35, -150.47, 2, math.random(14, 25))
  30. end