agrovedeer428142.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428142.lua
  3. Script Purpose : Waypoint Path for agrovedeer428142.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:36
  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, 69.67, -3.8, 212.1, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 67.93, -3.8, 214.86, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 89.29, -4.4, 212.9, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 64.96, -3.8, 217.87, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 88.42, -4.39, 216.82, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 65.98, -4.04, 221, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 68.73, -4.26, 222.38, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 66.59, -3.8, 216.98, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 59.9, -4.46, 225.67, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 87.28, -4.55, 215.89, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 78.07, -4.53, 221.98, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 84.42, -4.44, 213.82, 2, math.random(10, 24))
  29. end