aseasidefalcon432866.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432866.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432866.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:14
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 92.53, -0.75, 214.66, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 92.08, -0.8, 215.95, 2, 0)
  19. MovementLoopAddLocation(NPC, 89.71, -1.61, 218.43, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 87.66, -1.2, 214.61, 2, 0)
  21. MovementLoopAddLocation(NPC, 88.23, -0.95, 212.6, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 101.25, -0.99, 191.47, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 87.43, -1.61, 206.31, 2, 0)
  24. MovementLoopAddLocation(NPC, 86.52, -1.75, 209.14, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 65.66, -1.8, 213.35, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 90.82, -1.32, 189.48, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 102.6, -1.2, 194.15, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 97.42, -0.91, 210.59, 2, 0)
  29. end