Posted 24 September 2012 - 10:31 PM
I am working on something where for the first time I need the computer to recieve input to trigger an output. I know this can be done with
The program I am trying to write is for some buildcraft engines. After the computer recieves input from a redstone transport pipe, it activates a bunch of engines (to be more specific). Basically, I need it to wait for an item to pass by this redstone pipe and therefore turn it on.
rs.getInput("side")
but when i use this functionality the program bugs out. I need it to wait for an input which sets off an output. Would i do this by setting a variable for the input? I don't know how to use booleans in variables. If so, how exactly would this be done?The program I am trying to write is for some buildcraft engines. After the computer recieves input from a redstone transport pipe, it activates a bunch of engines (to be more specific). Basically, I need it to wait for an item to pass by this redstone pipe and therefore turn it on.