Posted 02 August 2012 - 08:37 PM
Hello!
I've tried to make a program which makes the computer emit a constant redstone signal on the right side, and a pulsing signal from the back.
I don't seem to get it right!
Help would be very appreciated! Thank you!
PS; My try:
I've tried to make a program which makes the computer emit a constant redstone signal on the right side, and a pulsing signal from the back.
I don't seem to get it right!
Help would be very appreciated! Thank you!
PS; My try:
while true do
rs.setOutput("right",true)
rs.setOutput("back",true)
os.sleep(5)
rs.setOutput("back",false)
end