amorakdevourer428726.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428726.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428726.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:08:43
  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, 261.19, -4.55, 54.63, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 257.85, -4.11, 52.88, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 262.83, -6, 64.84, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 270.44, -4.39, 48.46, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 266, -4.26, 47.05, 2, 0)
  25. MovementLoopAddLocation(NPC, 260.28, -4.09, 44, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 262.34, -4.56, 60.44, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 261.87, -4.56, 55.37, 2, 0)
  28. MovementLoopAddLocation(NPC, 260.88, -4.23, 51.41, 2, 0)
  29. MovementLoopAddLocation(NPC, 261.43, -4.09, 46.37, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, 260.62, -4, 49.79, 2, 0)
  31. MovementLoopAddLocation(NPC, 261.25, -4.43, 52.78, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, 269.69, -4.4, 52.73, 2, math.random(14, 25))
  33. end