agrovedeer428159.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428159.lua
  3. Script Purpose : Waypoint Path for agrovedeer428159.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16: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, 74.54, -4.41, 221.86, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 60.75, -3.94, 218.89, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 85.22, -4.56, 217.92, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 76.05, -4.52, 223.89, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 74.19, -4.52, 225.66, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 80.28, -4.31, 217.8, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 62.73, -4.1, 220.97, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 78.56, -4.34, 228.01, 2, math.random(10, 24))
  25. end