aseasidefalcon432937.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432937.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432937.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:30
  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, 101.24, -1.75, 171.04, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 95.44, -0.58, 179.25, 2, 0)
  19. MovementLoopAddLocation(NPC, 92.15, -0.39, 208.27, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 104.08, -0.49, 185.77, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 105.41, -0.29, 181.37, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 111.95, 0.61, 168.6, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 92.19, 0.37, 191.61, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 78.77, 0.44, 207.35, 2, 0)
  25. MovementLoopAddLocation(NPC, 75.92, 0.59, 215.46, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 78.99, 0.29, 207.13, 2, 0)
  27. MovementLoopAddLocation(NPC, 83.36, -0.61, 201.18, 2, 0)
  28. MovementLoopAddLocation(NPC, 87.84, -0.83, 200.44, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 96.17, -1.41, 177.89, 2, 0)
  30. end