agrovedeer428034.lua 1022 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428034.lua
  3. Script Purpose : Waypoint Path for agrovedeer428034.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:52
  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, 81.23, -4.35, 226.91, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 63.95, -3.8, 218.32, 2, 0)
  19. MovementLoopAddLocation(NPC, 61.1, -3.9, 216.09, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 63.9, -4.48, 226.58, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 67.62, -4.49, 226.74, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 90.31, -4.35, 213.99, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 82.93, -4.55, 219.5, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 75.09, -3.8, 211.76, 2, math.random(10, 24))
  25. end