Advertisement
VGToolBox

Dressing Dresser

Dec 3rd, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. pim = peripheral.wrap("front")
  2. --glow = peripheral.wrap("glowstone_illuminator_17")
  3.  
  4. while true do
  5.  
  6.   while pim.getInvName() == "EmptyInventory" do
  7.   sleep(1)
  8.   end
  9.  
  10.   rs.setBundledOutput("bottom", colours.white)
  11.  
  12.   sleep(0.5)
  13.  
  14.   for i = 36, 39 do
  15.  
  16.     if pim.getStackInSlot(i) then
  17.       pim.pushIntoSlot("down", i, 1, i)
  18.       if glow then
  19.         glow.setColor(0xFF0000)
  20.       end
  21.     else
  22.       pim.pullIntoSlot("down", i, 1, i)
  23.       if glow then
  24.         glow.setColor(0x00FF00)
  25.       end
  26.     end
  27.    
  28.   end
  29.  
  30.   rs.setBundledOutput("bottom", 0)
  31.  
  32.   sleep(2)
  33.  
  34.  
  35.  
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement