Advertisement
TinaTheDerpy

Gravel

Dec 21st, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local x = 1
  2.  
  3. function stack()
  4.    for i = 1, 5 do
  5.       turtle.up()
  6.       turtle.placeDown()
  7.    end
  8. end
  9.    
  10. function topple()
  11.    for i = 1, 5 do
  12.       turtle.digDown()
  13.       turtle.down()
  14.    end
  15. end
  16.  
  17. term.write("Cycles = ")
  18. x = tonumber(read())
  19.  
  20. for i = 1, x do
  21.    stack()
  22.    topple()
  23. end
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement