this is the startup loop set as test1 for now so can manually run it:
if rs.getInput( "top" , true)
print("lever activated...)
shell.run("move")
sleep(1)
shell.run("test1")
else
shell.run("test1")
end
this is the move program
function quarryMove()
rs.setOutput( "right" , true )
sleep(1)
rs.setOutput( "right" , false )
sleep(1)
end
function quarryMine()
rs.setOutput( "left" , true )
sleep(25)
rs.setOutput( "left" , false )
sleep(1)
end
quarryMove()
quarryMine()
Edited by teeto69, 08 April 2015 - 08:03 PM.











