agrovedeer428053.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428053.lua
  3. Script Purpose : Waypoint Path for agrovedeer428053.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:19:50
  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, 138.46, -3.59, 174.59, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 143.3, -3.68, 158.39, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 165.23, -3.18, 166.09, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 170.93, -3.22, 150.14, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 157.8, -3.46, 155.33, 2, 0)
  22. MovementLoopAddLocation(NPC, 140.36, -3.68, 160.22, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 144.09, -3.69, 160.39, 2, 0)
  24. MovementLoopAddLocation(NPC, 166.74, -3.28, 176.74, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 168.48, -3.42, 174.73, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 164.39, -3.15, 174.09, 2, 0)
  27. MovementLoopAddLocation(NPC, 144.72, -3.57, 164.34, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 136.83, -3.28, 183.38, 2, math.random(10, 24))
  29. end