agrovedeer428032.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428032.lua
  3. Script Purpose : Waypoint Path for agrovedeer428032.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:23
  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, 58.67, -4.18, 216.98, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 65.76, -4.49, 223.82, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 84.08, -4.55, 218.77, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 61.63, -4.47, 222.81, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 85.18, -4.56, 216.97, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 63.52, -3.8, 211.98, 2, 0)
  23. MovementLoopAddLocation(NPC, 59.65, -3.99, 211.9, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 84.32, -4.4, 211.88, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 75.72, -4.52, 226.5, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 72.19, -4.51, 224.18, 2, 0)
  27. MovementLoopAddLocation(NPC, 69.25, -4.37, 223.03, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 71.87, -4.51, 223.9, 2, 0)
  29. MovementLoopAddLocation(NPC, 77.81, -4.33, 228.62, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 68.67, -4.41, 228.85, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 83.84, -4.51, 223.66, 2, math.random(10, 24))
  32. end