agrovedeer428104.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428104.lua
  3. Script Purpose : Waypoint Path for agrovedeer428104.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:28
  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, 57.54, -4.26, 216.87, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 60.58, -3.96, 217.7, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 59.59, -4.06, 215.34, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 59.81, -4.05, 216.01, 2, 0)
  21. MovementLoopAddLocation(NPC, 56.5, -4.25, 219.42, 2, 0)
  22. MovementLoopAddLocation(NPC, 56.33, -4.25, 220.87, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 79.36, -4.25, 217.94, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 64.59, -3.8, 215.99, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 51.27, -4.31, 222.77, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 52.08, -4.24, 220.12, 2, 0)
  27. end