Advertisement
Guest User

Mine_Pro

a guest
Feb 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. --[[Mine_Pro v1.1
  2. Neil O'Mara
  3. 2/15/19
  4. Digs 3*3 tunnel with walls around it and torches
  5. Before activating, have stack of torches in slot 1 and cobblestone in stack 2.
  6. Changelog: v1.1 2/16/19 new dig and build pattern to fix previous building bug in v1.0.]]
  7.  
  8. -- Loop --
  9. while turtle.getItemCount(1) > 0 do
  10.  
  11.  -- Column 2 Position --
  12.  turtle.dig() -- digs block 2 in column -- 
  13.  turtle.forward()
  14.  
  15.  -- Column Digging Script --
  16.  turtle.digDown() -- digs block 1 --
  17.  turtle.digUp() -- digs block 3 --
  18.  turtle.up()
  19.  turtle.digUp() -- digs block 4 --
  20.  turtle.up()
  21.  turtle.digUp() -- digs block 5 --
  22.  turtle.down() -- position 3 --
  23.  turtle.down() -- position 2 --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement