amorakdevourer428846.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428846.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428846.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. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 257.27, -4.06, 43, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 256.11, -4.05, 47.48, 2, 0)
  20. MovementLoopAddLocation(NPC, 261.28, -4.56, 59.62, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 262.32, -5.79, 64.5, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 268.45, -4.3, 57.34, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 259.92, -4.29, 40.06, 2, 0)
  24. MovementLoopAddLocation(NPC, 253.65, -4.28, 34.95, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 263.64, -4.06, 43.45, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 264.23, -4.47, 48.78, 2, 0)
  27. MovementLoopAddLocation(NPC, 264.17, -4.57, 58.76, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 263.53, -4.56, 55.98, 2, 0)
  29. MovementLoopAddLocation(NPC, 260.91, -4.09, 50.42, 2, 0)
  30. MovementLoopAddLocation(NPC, 260.27, -4.3, 40.68, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 261.07, -4.1, 50.51, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, 258.86, -3.96, 47.56, 2, 0)
  33. end