agrovedeer428114.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428114.lua
  3. Script Purpose : Waypoint Path for agrovedeer428114.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:30
  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, 58.82, -4.14, 215.07, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 60.66, -3.95, 216.31, 2, 0)
  19. MovementLoopAddLocation(NPC, 77.01, -4.53, 223.8, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 69.69, -4.02, 220.8, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 56.06, -4.25, 218.23, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 62.9, -3.8, 215.98, 2, 0)
  23. MovementLoopAddLocation(NPC, 66.05, -3.8, 212.81, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 78.13, -3.81, 212.95, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 68.66, -3.8, 218.61, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 65.79, -3.8, 213.68, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 59.46, -4.46, 222.88, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 72.81, -3.8, 214.8, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 60.97, -3.91, 216.17, 2, 0)
  30. end