giant_burrower.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : giant_burrower.lua
  3. Script Purpose : Waypoint Path for giant_burrower.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 12:57:31 AM
  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, 54.66, 0.07, -82.56, 2, math.random(0,20))
  18. MovementLoopAddLocation(NPC, 56.18, 0.12, -87.22, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, 44.13, -0.01, -99.85, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, 44.94, 0, -93.43, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, 53.22, 0.18, -90.88, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, 50.62, 0.18, -88.37, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, 54.95, 0.09, -83.08, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, 57.27, 0.18, -83.95, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, 62.74, -0.09, -82.07, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, 57.27, 0.18, -83.95, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, 54.95, 0.09, -83.08, 2, math.random(0,20))
  28. MovementLoopAddLocation(NPC, 50.62, 0.18, -88.37, 2, math.random(0,20))
  29. MovementLoopAddLocation(NPC, 53.22, 0.18, -90.88, 2, math.random(0,20))
  30. MovementLoopAddLocation(NPC, 44.94, 0, -93.43, 2, math.random(0,20))
  31. MovementLoopAddLocation(NPC, 44.13, -0.01, -99.85, 2, math.random(0,20))
  32. MovementLoopAddLocation(NPC, 56.18, 0.12, -87.22, 2, math.random(0,20))
  33. MovementLoopAddLocation(NPC, 54.66, 0.07, -82.56, 2, math.random(0,20))
  34. end