aseasidefalcon432822.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432822.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432822.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:06
  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, 98.49, -0.05, 198.58, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 79.18, -0.2, 205.38, 2, 0)
  19. MovementLoopAddLocation(NPC, 63.87, -0.3, 219.4, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 88.45, -0.25, 215.96, 2, 0)
  21. MovementLoopAddLocation(NPC, 95.41, -0.19, 213.4, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 95.98, -0.2, 210.65, 2, 0)
  23. MovementLoopAddLocation(NPC, 90.95, -0.32, 191.74, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 82.48, -0.5, 192.33, 2, 0)
  25. MovementLoopAddLocation(NPC, 77.55, -0.8, 198.31, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 84.36, -0.4, 188.65, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 79.44, -0.35, 195.65, 2, 0)
  28. MovementLoopAddLocation(NPC, 78.29, -0.4, 197.52, 2, math.random(10, 24))
  29. end