agrovedeer428058.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428058.lua
  3. Script Purpose : Waypoint Path for agrovedeer428058.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:20:19
  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, 177.64, -3.66, 181.01, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 176.18, -3.56, 183.64, 2, 0)
  19. MovementLoopAddLocation(NPC, 168.28, -3.87, 205.66, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 157.06, -3.24, 178.93, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 165.02, -3.16, 174.79, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 156.04, -3.07, 192.91, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 182.25, -3.77, 173.18, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 176.85, -3.58, 182.01, 2, 0)
  25. MovementLoopAddLocation(NPC, 176.19, -3.55, 184.77, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 171.42, -3.3, 199.31, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 170, -2.79, 192.01, 2, 0)
  28. MovementLoopAddLocation(NPC, 169.84, -3.36, 155.92, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 166.6, -2.54, 185.16, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 169.47, -3.21, 183.6, 2, 0)
  31. end