agrovedeer428042.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428042.lua
  3. Script Purpose : Waypoint Path for agrovedeer428042.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:59
  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, 119.45, -3.63, 161.09, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 103.37, -3.99, 172.77, 2, 0)
  19. MovementLoopAddLocation(NPC, 102.27, -4, 177.78, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 103.81, -4.09, 168.3, 2, 0)
  21. MovementLoopAddLocation(NPC, 106.88, -3.96, 157.17, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 109.07, -3.8, 172.62, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 130.02, -3.77, 163.09, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 96.48, -4.33, 172.67, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 117.82, -3.8, 163.15, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 104.88, -3.98, 171.42, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 97.86, -3.6, 194.47, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 107.6, -3.84, 188.2, 2, 0)
  29. MovementLoopAddLocation(NPC, 112.98, -4, 186.23, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 106.5, -3.77, 185.94, 2, 0)
  31. MovementLoopAddLocation(NPC, 101.59, -4, 182.12, 2, 0)
  32. MovementLoopAddLocation(NPC, 97.83, -4, 181.19, 2, 0)
  33. MovementLoopAddLocation(NPC, 94.07, -4.2, 176.67, 2, math.random(10, 24))
  34. MovementLoopAddLocation(NPC, 96.24, -4.24, 175.27, 2, 0)
  35. MovementLoopAddLocation(NPC, 105.35, -3.8, 161.03, 2, math.random(10, 24))
  36. MovementLoopAddLocation(NPC, 110.79, -3.8, 159.61, 2, 0)
  37. end