aseasidefalcon432859.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432859.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432859.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:11
  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, 89.54, -1.46, 215.52, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 85.16, -1.38, 204.78, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 96.58, -0.9, 210.07, 2, 0)
  20. MovementLoopAddLocation(NPC, 97.24, -0.81, 211.81, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 94.32, -0.21, 214.08, 2, 0)
  22. MovementLoopAddLocation(NPC, 82.69, -0.4, 212.63, 2, 0)
  23. MovementLoopAddLocation(NPC, 70.92, -0.62, 210.04, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 96.68, -0.49, 182.59, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 95.89, -0.55, 180.54, 2, 0)
  26. MovementLoopAddLocation(NPC, 95.92, -0.61, 175, 2, 0)
  27. MovementLoopAddLocation(NPC, 108.67, -0.76, 165.64, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 101.07, -0.49, 171.35, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 82.99, -0.54, 197.62, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 93.76, -0.6, 208.38, 2, math.random(10, 24))
  31. end