Advertisement
Guest User

startup.lua

a guest
Mar 18th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.13 KB | None | 0 0
  1. x = 0
  2. while true do
  3. turtle.dig()
  4. x = x + 1
  5. if x > 256 then
  6. for i = 1,16 do
  7. turtle.select(i)
  8. turtle.dropDown()
  9. end
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement