agrovedeer428168.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428168.lua
  3. Script Purpose : Waypoint Path for agrovedeer428168.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16: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, 76.4, -3.8, 214.98, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 84.37, -4.55, 216.77, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 81.14, -4.54, 221.92, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 68.11, -4.49, 224.6, 2, 0)
  21. MovementLoopAddLocation(NPC, 64.1, -4.48, 225.96, 2, 0)
  22. MovementLoopAddLocation(NPC, 62.58, -4.48, 225.36, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 63.58, -4.48, 224.29, 2, 0)
  24. MovementLoopAddLocation(NPC, 62.57, -3.8, 218.9, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 58.7, -4.26, 220.97, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 78.27, -4.52, 220.9, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 82.2, -4.38, 225.91, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 89.07, -4.37, 219.01, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 63.94, -4.2, 221.57, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 71.91, -3.8, 211.84, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 76.03, -3.99, 218.88, 2, math.random(10, 24))
  32. end