agrovedeer428050.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428050.lua
  3. Script Purpose : Waypoint Path for agrovedeer428050.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:19:28
  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, 157.35, -2.59, 145.99, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 159.37, -3.18, 149.22, 2, 0)
  19. MovementLoopAddLocation(NPC, 171.43, -3.2, 160.33, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 167.18, -3.05, 159.76, 2, 0)
  21. MovementLoopAddLocation(NPC, 152.73, -3.2, 154.26, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 152.79, -3.53, 180.79, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 163.14, -3.16, 172.75, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 140.12, -3.56, 173.19, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 146.06, -4.19, 202.15, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 163.74, -4.05, 207.51, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 177.63, -3.57, 187.13, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 186.8, -3.03, 156.37, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 163.71, -3.32, 162.52, 2, math.random(10, 24))
  30. end