agrovedeer428145.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428145.lua
  3. Script Purpose : Waypoint Path for agrovedeer428145.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:38
  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, 71.22, -3.8, 216.87, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 78.06, -3.8, 214.81, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 85.29, -4.36, 223.98, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 79.29, -4.53, 224.15, 2, 0)
  21. MovementLoopAddLocation(NPC, 74.93, -4.52, 224.6, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 68.76, -3.8, 211.97, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 64.71, -4.48, 224.85, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 72.84, -3.8, 213.89, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 59.45, -4.38, 221.93, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 64.89, -3.8, 212.59, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 63.82, -3.8, 214.35, 2, 0)
  28. MovementLoopAddLocation(NPC, 63.19, -3.8, 215.06, 2, 0)
  29. MovementLoopAddLocation(NPC, 62.45, -3.8, 216.46, 2, 0)
  30. MovementLoopAddLocation(NPC, 51.76, -4.37, 222.94, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 74.72, -3.81, 218.85, 2, math.random(10, 24))
  32. end