Posted 12 October 2012 - 07:53 AM
Hey, Only start playing around with CC recently, so this is probably/hopefully easy to fix. I tried as best I could to fix it, with no success.
For some reason when I run this program, it works for about 5 seconds before the computer shuts down completely.
I will say, for the short while it works that the program runs how I want it to.
For some reason when I run this program, it works for about 5 seconds before the computer shuts down completely.
I will say, for the short while it works that the program runs how I want it to.
input = "top"
output = "left"
rs.setOutput(output, true)
while true do
if os.eventPull == "redstone" then
if rs.getInput(input) == true then
rs.setOutput(output, false)
sleep(8)
rs.setOutput(output, true)
end
end
end