Advertisement
rhn

Reinforced stone

rhn
Aug 28th, 2014
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. while true do
  2.  
  3.     if redstone.getInput("top") == true then
  4.         redstone.setBundledOutput("left", 1) --place scaffold
  5.         sleep(0.5)
  6.         redstone.setBundledOutput("left", 2) --cf foam
  7.         sleep(1)
  8.         redstone.setBundledOutput("left", 4) --sand
  9.         sleep(1)
  10.         redstone.setBundledOutput("left", 8) --break
  11.         sleep(1)
  12.         redstone.setBundledOutput("left", 0)
  13.        
  14.     else
  15.         sleep(5)
  16.     end
  17.  
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement