ataintedgrovedeer433044.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedgrovedeer433044.lua
  3. Script Purpose : Waypoint Path for ataintedgrovedeer433044.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:20:01
  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, 154.12, -3.2, 164.37, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 135.29, -3.7, 162.67, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 137.04, -3.75, 178.54, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 141.76, -3.53, 189.16, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 155.81, -2.8, 172.43, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 169.65, -3.01, 158.37, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 167.13, -3.11, 160.1, 2, 0)
  24. MovementLoopAddLocation(NPC, 149.16, -3.04, 166.65, 2, 0)
  25. MovementLoopAddLocation(NPC, 146.67, -3.42, 167.21, 2, 0)
  26. MovementLoopAddLocation(NPC, 138.94, -3.5, 170.25, 2, math.random(10, 24))
  27. end