agrovedeer428037.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428037.lua
  3. Script Purpose : Waypoint Path for agrovedeer428037.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:00
  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, 83, -4.55, 219.91, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 75.93, -4.51, 222.03, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 84.23, -4.4, 213.06, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 65.96, -4.17, 221.85, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 69.81, -4.29, 222.45, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 70.76, -3.8, 217.88, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 70.95, -4.5, 227.99, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 58.31, -4.13, 214, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 57.6, -4.45, 223.89, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 79.2, -4.53, 224.92, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 76.56, -3.8, 214.23, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 67.26, -3.8, 216.86, 2, math.random(10, 24))
  29. end