agrovedeer428150.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428150.lua
  3. Script Purpose : Waypoint Path for agrovedeer428150.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:41
  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, 71.9, -3.8, 216.1, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 74.78, -4.32, 228.73, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 64.07, -4.39, 222.84, 2, 0)
  20. MovementLoopAddLocation(NPC, 54.33, -4.24, 219.63, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 71.64, -4.51, 226.67, 2, 0)
  22. MovementLoopAddLocation(NPC, 87.24, -4.54, 217.8, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 65.76, -3.8, 215.84, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 63.57, -3.8, 215.76, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 71.83, -3.8, 218.04, 2, math.random(10, 24))
  26. end