aseasidefalcon432799.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432799.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432799.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:03
  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, 99.68, -0.72, 211.52, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 87.44, -0.49, 215.22, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 74.68, -1.31, 202.73, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 88.57, -0.8, 216.72, 2, 0)
  21. MovementLoopAddLocation(NPC, 89.37, -0.38, 219.46, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 91.52, -0.5, 213.68, 2, 0)
  23. MovementLoopAddLocation(NPC, 92.21, -0.7, 205.83, 2, 0)
  24. MovementLoopAddLocation(NPC, 98.46, -0.8, 191.33, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 102, -0.25, 165.52, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 101.44, -0.6, 180.76, 2, 0)
  27. MovementLoopAddLocation(NPC, 96.39, -1.4, 187.66, 2, 0)
  28. MovementLoopAddLocation(NPC, 96.19, -1.7, 189.88, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 96.84, -1.3, 197.02, 2, 0)
  30. end