aseasidefalcon432842.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aseasidefalcon432842.lua
  3. Script Purpose : Waypoint Path for aseasidefalcon432842.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:09
  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, 90.85, -0.59, 206.59, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 94.77, -0.7, 181.94, 2, 0)
  19. MovementLoopAddLocation(NPC, 100.75, -0.82, 169.33, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 95.62, -0.74, 179.34, 2, 0)
  21. MovementLoopAddLocation(NPC, 95.52, -0.67, 182.62, 2, 0)
  22. MovementLoopAddLocation(NPC, 97.82, -0.55, 186.81, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 92.61, -0.65, 187.79, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 98, 0.39, 211, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 95.39, -0.94, 186.35, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 106.03, -0.79, 180.4, 2, 0)
  27. MovementLoopAddLocation(NPC, 109.12, -0.71, 181.18, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 106.55, -0.81, 177.96, 2, 0)
  29. MovementLoopAddLocation(NPC, 105.71, -0.89, 169.68, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 97.54, -0.75, 191.67, 2, 0)
  31. end