Advertisement
Ranger15

computercraft chest inventory wrap

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