Posted 12 May 2013 - 07:52 AM
Hi i want to make a program that when the computer gets a redstone signal (by a button) he gives to bottom 2 times a redstone signal!
my code (it doesn't work <_</>):
my code (it doesn't work <_</>):
input = rs.getInput("front")
while true do
if input == true then
rs.setOutput("bottom, true)
sleep(0.2)
rs.setOutput("bottom, false)
sleep(0.8)
rs.setOutput("bottom, true)
sleep(0.2)
rs.setOutput("bottom, false)
end
end