Advertisement
Guest User

autoScramble

a guest
Dec 13th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. craftable = peripheral.wrap("left")
  2. nonCraftable = peripheral.wrap("bottom")
  3.  
  4. while true do
  5.   craftable.condenseItems()
  6.   nonCraftable.condenseItems()
  7.   --Move all items in chest top slots
  8.  
  9.   left1 = craftable.getStackInSlot(1)  
  10.   bottom1 = nonCraftable.getStackInSlot(1)
  11.   bottom2 = nonCraftable.getStackInSlot(2)
  12.  
  13.   if left1 then
  14.     if bottom1 then
  15.       if bottom2 then
  16.        
  17.       end
  18.     end
  19.   end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement