agrovedeer428085.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428085.lua
  3. Script Purpose : Waypoint Path for agrovedeer428085.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:25
  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, 62.03, -3.8, 219.08, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 79.05, -4.34, 227.91, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 61.47, -4.33, 221.89, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 73.79, -3.8, 211.89, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 75.8, -3.8, 211.88, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 53.52, -4.44, 223.83, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 66.63, -3.8, 217.78, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 79.09, -4.47, 219.9, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 75.21, -3.8, 214.88, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 63.62, -3.8, 216.28, 2, 0)
  27. MovementLoopAddLocation(NPC, 61.8, -3.82, 216.12, 2, 0)
  28. MovementLoopAddLocation(NPC, 59.52, -4.08, 216.79, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 60.43, -3.98, 216.18, 2, 0)
  30. MovementLoopAddLocation(NPC, 79.03, -4.33, 218.76, 2, math.random(10, 24))
  31. end