Advertisement
Guest User

Walls2

a guest
Feb 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. print("how far")
  2. howfar = read()
  3. print("you wanted to go "..howfar.."how")
  4.  
  5. turtle.turnLeft()
  6. turtle.turnLeft()
  7.  
  8. for i=1, howfar do
  9.     turtle.back()
  10.     turtle.place()
  11.     turtle.up()
  12.     turtle.place()
  13.     turtle.up()
  14.     turtle.place()
  15.     turtle.up()
  16.     turtle.place()
  17.     turtle.down()
  18.     turtle.down()
  19.     turtle.down()
  20.     end
  21.            
  22. turtle.turnLeft()
  23. turtle.turnLeft()
  24.  
  25. print("ferig")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement