Advertisement
metalim

uberquarry

Mar 6th, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. while true do
  2.     sleep(1)
  3.     rs.setBundledOutput('right',colors.green)
  4.     sleep(1)
  5.     rs.setBundledOutput('right',0)
  6.     for i=10,1,-1 do
  7.         print(i)
  8.         sleep(1)
  9.     end
  10.     chest = peripheral.wrap('left')
  11.     print('sleep')
  12.     while not chest.getStackInSlot(1) do
  13.         sleep(5)
  14.     end
  15.     rs.setBundledOutput('right',colors.red)
  16.     sleep(1)
  17.     rs.setBundledOutput('right',0)
  18.     print('retrying!')
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement