Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.unloadAPI("navigation")
- os.loadAPI("navigation")
- minLayer = 10
- turn = "Left"
- --[Mining Function]--
- function mine()
- navigation.status = "Mining"
- for layer = navigation.yCurrent, minLayer, -1 do
- for row = 0, 9, 1 do
- for swing = 0, 8, 1 do
- navigation.forward()
- if (navigation.checkBag()) then
- navigation.resupply()
- end
- end
- if (row == 9) then
- navigation.turnLeft()
- if (layer > minLayer) then
- navigation.down()
- end
- elseif (turn == "Left") then
- navigation.turnLeft()
- navigation.forward()
- navigation.turnLeft()
- turn = "Right"
- elseif (turn == "Right") then
- navigation.turnRight()
- navigation.forward()
- navigation.turnRight()
- turn = "Left"
- end
- end
- end
- navigation.goJob()
- navigation.goHome()
- end
- --[Main Function]--
- --navigation.pitboss() --uncomment to work with guided pitboss program
- navigation.navi() --For guided manual use
- mine() --Mine a 10x10 area to y level 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement