Advertisement
hevohevo

CC: tofu1

Mar 3rd, 2016
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. -- tofu1
  2. -- put 4 blocks in the ground
  3.  
  4. turtle.up()  -- move up one step
  5.  
  6. -- place 4 blocks on the ground with the "for statement"
  7. for i=1,4 do
  8.   turtle.forward()  -- move to next position
  9.   turtle.placeDown()  -- place a block (1st, 2nd, 3rd, 4th)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement