Advertisement
Guest User

startup.lua

a guest
May 21st, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. local chest = peripheral.find("minecraft:chest")
  2. while true do
  3.     sleep(.1)
  4.     for slot = 1,16 do
  5.         chest.pullItems("turtle_2127",slot)
  6.         chest.pullItems("turtle_2128",slot)
  7.         chest.pullItems("turtle_2129",slot)
  8.     end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement