agrovedeer428054.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428054.lua
  3. Script Purpose : Waypoint Path for agrovedeer428054.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:19:53
  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, 146.16, -3.8, 195.08, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 148.73, -3.88, 199.16, 2, 0)
  19. MovementLoopAddLocation(NPC, 150.99, -3.98, 203.38, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 150.87, -3.76, 199.5, 2, 0)
  21. MovementLoopAddLocation(NPC, 136.64, -3.72, 178.52, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 135.59, -3.69, 176.76, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 157.29, -4.05, 207.51, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 157.35, -3.81, 205.02, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 166.52, -2.39, 187.1, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 143.12, -3.09, 187.02, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 147.49, -3.5, 172.37, 2, 0)
  28. MovementLoopAddLocation(NPC, 146.9, -3.5, 168.64, 2, 0)
  29. MovementLoopAddLocation(NPC, 158.74, -3.84, 133.55, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 144.81, -3.68, 162.96, 2, math.random(10, 24))
  31. end