aseasidefalcon432801.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432801.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432801.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:38
  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, 105.65, -0.67, 181.81, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 102.51, -0.39, 187.31, 2, 0)
  19. MovementLoopAddLocation(NPC, 96.86, -0.39, 209.99, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 110.72, -0.45, 183.45, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 101.24, -0.51, 208.14, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 95.76, 0.42, 197.31, 2, 0)
  23. MovementLoopAddLocation(NPC, 92.36, 0.65, 187.76, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 93.9, -1.19, 196.84, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 103.16, -0.71, 170.96, 2, math.random(10, 24))
  26. end