agrovedeer428052.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428052.lua
  3. Script Purpose : Waypoint Path for agrovedeer428052.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:19:48
  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, 157.47, -4.16, 209.71, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 178.04, -3.61, 195.28, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 152.41, -3.33, 197.56, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 168.42, -3.43, 179.1, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 166.94, -3.29, 172.27, 2, 0)
  22. MovementLoopAddLocation(NPC, 165.1, -3.17, 169.29, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 162.47, -3.06, 174.11, 2, 0)
  24. MovementLoopAddLocation(NPC, 151.24, -4.1, 205.53, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 158.75, -3.45, 203.11, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 137.77, -3.37, 151.62, 2, 0)
  27. MovementLoopAddLocation(NPC, 137.06, -3.82, 147.82, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 146.56, -3.71, 148.12, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 147.99, -3.61, 149.88, 2, 0)
  30. MovementLoopAddLocation(NPC, 158.85, -3.36, 150, 2, math.random(10, 24))
  31. end