agrovedeer428046.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428046.lua
  3. Script Purpose : Waypoint Path for agrovedeer428046.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:18:10
  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, 74.8, -3.8, 204.22, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 76.22, -3.8, 203.97, 2, 0)
  19. MovementLoopAddLocation(NPC, 108.63, -3.89, 187.13, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 99.9, -4, 204.11, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 117.68, -3.89, 184.66, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 128.75, -3.6, 174.83, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 127.3, -3.6, 174.22, 2, 0)
  24. MovementLoopAddLocation(NPC, 125.97, -3.6, 173.02, 2, 0)
  25. MovementLoopAddLocation(NPC, 119.5, -3.6, 170.79, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 117.32, -3.61, 173.5, 2, 0)
  27. MovementLoopAddLocation(NPC, 113.83, -3.8, 177.72, 2, 0)
  28. MovementLoopAddLocation(NPC, 108.45, -4, 180.89, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 107.34, -4, 181.47, 2, 0)
  30. MovementLoopAddLocation(NPC, 105, -4, 182.51, 2, 0)
  31. MovementLoopAddLocation(NPC, 80.75, -4.53, 197.82, 2, math.random(10, 24))
  32. MovementLoopAddLocation(NPC, 91.19, -4.2, 211.03, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 95.98, -4.09, 201.03, 2, math.random(10, 24))
  34. end