aseasidefalcon432804.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432804.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432804.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:18:20
  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, 159.96, -0.45, 150.35, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 152.35, 1.81, 151.91, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 165.43, 0.91, 138.1, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 162.36, 1.19, 159.7, 2, 0)
  21. MovementLoopAddLocation(NPC, 162.24, 1.51, 168.78, 2, 0)
  22. MovementLoopAddLocation(NPC, 159.76, 1.98, 176.65, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 175.61, 0.75, 145.8, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 190.87, 0.82, 157.92, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 158.33, 0.91, 151.91, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 173.23, 1.21, 184.61, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 173.13, 0.58, 178.88, 2, 0)
  28. MovementLoopAddLocation(NPC, 175.6, -0.55, 149.97, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 163.55, 0.83, 181.12, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 157.82, 1.97, 194.84, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 159.29, 2.22, 190.51, 2, math.random(10, 24))
  32. end