amorakdevourer428870.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428870.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428870.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, 262.03, -4.29, 51.77, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 259.54, -4.39, 54.16, 2, 0)
  20. MovementLoopAddLocation(NPC, 259.27, -4.54, 61.86, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 262.43, -4.4, 40.1, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 259.34, -4.16, 34.82, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 262.27, -4.23, 47.82, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 260.45, -3.97, 48.73, 2, 0)
  25. MovementLoopAddLocation(NPC, 257.89, -4.12, 55.24, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 261.48, -4.11, 48.32, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 259.42, -4.22, 51.5, 2, 0)
  28. MovementLoopAddLocation(NPC, 259.31, -5.61, 65.43, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 258.73, -6.31, 69.35, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, 259.26, -4.34, 53.52, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 263.75, -4.45, 51.58, 2, 0)
  32. MovementLoopAddLocation(NPC, 267.28, -4.16, 46.67, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, 262.24, -4.59, 61.88, 2, math.random(14, 25))
  34. end