Advertisement
Guest User

Automine

a guest
May 20th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.09 KB | None | 0 0
  1. os.unloadAPI("navigation")
  2. os.loadAPI("navigation")
  3.  
  4. minLayer = 10
  5. turn = "Left"
  6.  
  7. --[Mining Function]--
  8.  
  9. function mine()
  10.    
  11.   navigation.status = "Mining"
  12.  
  13.   for layer = navigation.yCurrent, minLayer, -1 do
  14.     for row = 0, 9, 1 do
  15.       for swing = 0, 8, 1 do
  16.         navigation.forward()
  17.         if (navigation.checkBag()) then
  18.           navigation.resupply()
  19.         end
  20.       end
  21.  
  22.       if (row == 9) then
  23.         navigation.turnLeft()
  24.         if (layer > minLayer) then
  25.           navigation.down()
  26.         end
  27.       elseif (turn == "Left") then
  28.         navigation.turnLeft()
  29.         navigation.forward()
  30.         navigation.turnLeft()
  31.         turn = "Right"
  32.       elseif (turn == "Right") then
  33.         navigation.turnRight()
  34.         navigation.forward()
  35.         navigation.turnRight()
  36.         turn = "Left"
  37.       end
  38.     end
  39.   end
  40.  
  41.   navigation.goJob()
  42.   navigation.goHome()
  43.  
  44. end
  45.  
  46. --[Main Function]--
  47.  
  48. --navigation.pitboss()  --uncomment to work with guided pitboss program
  49. navigation.navi()  --For guided manual use
  50. mine()  --Mine a 10x10 area to y level 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement