Advertisement
rungholt

temptychest

Aug 5th, 2023
1,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local function setupChest()
  2.     turtle.select(1)
  3.     turtle.placeUp()
  4. end
  5.  
  6. local function itemsIn()
  7.     for i = 1, 16 do
  8.         turtle.select(i)
  9.         turtle.suck()
  10.     end
  11.     turtle.select(1)
  12. end
  13.  
  14. local function itemsOut()
  15.     for i = 1, 16 do
  16.         turtle.select(i)
  17.         turtle.dropUp()
  18.     end
  19.     turtle.select(1)
  20. end
  21.  
  22. local function start()
  23.     setupChest()
  24.     for i = 1, 8 do
  25.         itemsIn()
  26.         itemsOut()
  27.     end
  28. end
  29.  
  30. start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement