aghostlysapling428364.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428364.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428364.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:44
  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, 173.3, 1.37, -24.6, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 180.07, 1.34, -14.92, 2, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 173.29, 1.37, -17.13, 2, 0)
  20. MovementLoopAddLocation(NPC, 160.09, 0.21, -24.85, 2, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 164.67, 0.91, -22.81, 2, 0)
  22. MovementLoopAddLocation(NPC, 167.33, 1.32, -19.48, 2, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 177.64, 1.35, 2.22, 2, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 174.19, 1.16, 7.2, 2, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 162.22, 1.41, -2.64, 2, 0)
  26. MovementLoopAddLocation(NPC, 159.51, 0.42, -8.44, 2, 0)
  27. MovementLoopAddLocation(NPC, 157.04, 0.07, -10.15, 2, 0)
  28. MovementLoopAddLocation(NPC, 153.21, 0.03, -10.04, 2, math.random(14, 30))
  29. MovementLoopAddLocation(NPC, 155.47, 0.15, -8.12, 2, math.random(14, 30))
  30. end