Advertisement
Guest User

startup.lua

a guest
May 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. chest = peripheral.wrap("minecraft:ironchest_diamond_2991")
  2. chest2 = peripheral.wrap("minecraft:chest_3075")
  3. while true do
  4.     for slot = 1, 27 do
  5.         chest2.pullItems("minecraft:chest_3074",slot)
  6.         chest.pullItems("minecraft:chest_3070",slot)
  7.     end
  8.     sleep(.1)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement