Advertisement
Guest User

makeRoom

a guest
Nov 29th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. function dig
  2.   turtle.dig()
  3.   turtle.forward()
  4.   turtle.digUp()
  5.   turtle.digDown()
  6. end
  7.  
  8. length = int(input("Length: "))
  9. width = int(input("Width: "))
  10.  
  11. curLength = length
  12. curWidth = width
  13.  
  14. while curLength > 0 do
  15.   dig
  16.   curLength -= 1
  17. end
  18.  
  19. turtle.turnRight()
  20.  
  21. while curWidth < 0 do
  22.   dig
  23.   curWidth -= 1
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement