agrovedeer428039.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428039.lua
  3. Script Purpose : Waypoint Path for agrovedeer428039.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:17:47
  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, 117.6, -3.6, 174.78, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 130.27, -3.57, 168.95, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 112.44, -3.8, 170.82, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 126.28, -3.6, 166.96, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 111.84, -4, 167.22, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 117.1, -4.04, 187.85, 2, 0)
  23. MovementLoopAddLocation(NPC, 118.81, -4.2, 191.26, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 117.74, -3.88, 184.58, 2, 0)
  25. MovementLoopAddLocation(NPC, 115.94, -3.81, 181.42, 2, 0)
  26. MovementLoopAddLocation(NPC, 117.92, -3.79, 156.95, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 100.45, -4, 181.92, 2, 0)
  28. MovementLoopAddLocation(NPC, 98.04, -3.85, 184.55, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 100, -3.88, 184.22, 2, 0)
  30. MovementLoopAddLocation(NPC, 106.29, -4, 180.69, 2, 0)
  31. MovementLoopAddLocation(NPC, 108.95, -4, 179.75, 2, 0)
  32. MovementLoopAddLocation(NPC, 128.41, -3.6, 168.76, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 117.92, -3.6, 174.51, 2, math.random(10, 24))
  34. MovementLoopAddLocation(NPC, 106.92, -3.8, 162.75, 2, math.random(10, 24))
  35. MovementLoopAddLocation(NPC, 108.78, -4, 168.93, 2, 0)
  36. end