agrovedeer428036.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428036.lua
  3. Script Purpose : Waypoint Path for agrovedeer428036.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:57
  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, 82.17, -4.43, 215.88, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 77.27, -4.53, 223.98, 2, 0)
  19. MovementLoopAddLocation(NPC, 75.04, -4.52, 226.31, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 79.19, -4.4, 226.87, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 64.28, -3.8, 218.76, 2, 0)
  22. MovementLoopAddLocation(NPC, 61.42, -3.86, 216.69, 2, 0)
  23. MovementLoopAddLocation(NPC, 59.27, -4.11, 215.8, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 71.88, -3.8, 216.95, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 59.52, -4.46, 223.91, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 72.28, -4.02, 220.72, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 86.52, -4.51, 214.89, 2, math.random(10, 24))
  28. end