agrovedeer428056.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428056.lua
  3. Script Purpose : Waypoint Path for agrovedeer428056.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:20:14
  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, 147.9, -3.78, 178.86, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 166.57, -3.08, 180.63, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 152.04, -3.29, 153.23, 2, 0)
  20. MovementLoopAddLocation(NPC, 150.97, -3.07, 147.2, 2, 0)
  21. MovementLoopAddLocation(NPC, 147.21, -3.5, 142.68, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 152.48, -3.39, 149.34, 2, 0)
  23. MovementLoopAddLocation(NPC, 162.38, -3.3, 166.17, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 151.48, -3.16, 171.25, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 159.11, -2.23, 190.38, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 171.52, -3.34, 139.81, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 177.64, -3.2, 143.68, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 151.15, -3.01, 139.7, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 177.6, -3.06, 145.75, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 147.78, -3.41, 141.99, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 146.81, -3.5, 169.03, 2, 0)
  32. end