amorakdevourer1587734.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587734.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587734.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:49
  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, 222.79, -3.85, -32.29, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 222.18, -3.71, -40.34, 2, 0)
  20. MovementLoopAddLocation(NPC, 218.17, -1.09, -49.93, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 208.9, -0.75, -79.39, 2, 0)
  22. MovementLoopAddLocation(NPC, 202.69, -0.72, -91.34, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 212.77, -1.02, -70.92, 2, 0)
  24. MovementLoopAddLocation(NPC, 222, -2.95, -43.87, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 215.22, -1.39, -62.14, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 222.01, -2.47, -45.7, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 219.8, -0.8, -73.9, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 222.87, -1.49, -63.67, 2, 0)
  29. MovementLoopAddLocation(NPC, 222.99, -3.79, -38.88, 2, math.random(14, 25))
  30. end