Posted 07 December 2013 - 12:40 PM
I have 2 loops im trying to run at the same time how can I acomplish this?
never mind, I was having an issue with my syantax and couldnt get functions to work, I figured it out.
while true do
redstone.setOutput("right", true)
sleep(10)
redstone.setOutput("right", false)
sleep(3)
end
while true do
redstone.setOutput("left", true)
sleep(1)
redstone.setOutput("left", false)
sleep(5)
end
never mind, I was having an issue with my syantax and couldnt get functions to work, I figured it out.
Edited on 07 December 2013 - 12:01 PM