agrovedeer428035.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428035.lua
  3. Script Purpose : Waypoint Path for agrovedeer428035.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:55
  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, 87.19, -4.54, 215.08, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 79.64, -4.54, 223.12, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 88.43, -4.37, 220.85, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 73.98, -3.8, 216.81, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 81.12, -4.42, 217.9, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 66.59, -4.36, 223.06, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 72.9, -3.8, 217.86, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 88.44, -4.37, 218.78, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 55.99, -4.45, 222.47, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 67.74, -3.8, 216, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 71.97, -4.02, 220.71, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 81.34, -4.45, 217.82, 2, math.random(10, 24))
  29. end