amorakdevourer1587729.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587729.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587729.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:34
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "3")
  10. SpawnSet(NPC, "hp", 75)
  11. SpawnSet(NPC, "power", 45)
  12. waypoints(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, 223.45, -1.49, -65.25, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 215.3, -0.98, -71.46, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 223.09, -3.81, -33.93, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 222.06, -1.48, -64.09, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 216.1, -1.46, -63.9, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 198.96, -0.71, -88.8, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 216.27, -0.78, -85.72, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 220.07, -0.74, -57.75, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 218.98, -0.79, -76.31, 2, math.random(14, 25))
  30. end