Advertisement
Guest User

digger

a guest
Feb 8th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. width=3
  2. highness=3
  3. depht=3
  4. for i=0,depht do
  5.     smartMoveForward()
  6.     for j=0,highness do
  7.         turtle.turnLeft()
  8.         smartMoveForward(width-1)
  9.         turtle.turnRight()
  10.         turtle.turnRight()
  11.         smartMoveForward(width-1)
  12.         turtle.turnLeft()
  13.         if j<highness then
  14.            smartMoveUp()
  15.         end
  16.     end
  17.     smartMoveDown(highness)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement