Posted 20 November 2012 - 06:53 AM
code1(startup):
while true do
if rs.getInput("left") == true then
shell.run("st")
end
sleep(0)
end
code2(the problem-monitor menu):
rs.setOutput("top", true)
mon = peripheral.wrap("back")
mon.setTextScale(2)
while true do
if rs.getInput("left") == true then
rs.setOutput("top", false)
mon.clear()
shell.run("startup")
end
rin = rs.getBundledInput( "front" )
if colors.test( rin, colors.lime) == true then
mon.setCursorPos(1,1)
mon.clearLine()
mon.write("Zasilanie: 100%")
elseif colors.test( rin, colors.yellow) == true then
mon.setCursorPos(1,1)
mon.clearLine()
mon.write("Zasilanie: 75%")
elseif colors.test( rin, colors.lightBlue) == true then
mon.setCursorPos(1,1)
mon.clearLine()
mon.write("Zasilanie: 50%")
elseif colors.test( rin, colors.magenta) == true then
mon.setCursorPos(1,1)
mon.clearLine()
mon.write("Zasilanie: 25%")
else
mon.setCursorPos(1,1)
mon.clearLine()
mon.write("Zasilanie: 0%")
end
if colors.test( rin, colors.white) == true then
mon.setCursorPos(1,2)
mon.clearLine()
mon.write("Quarry: Wlaczone")
else
mon.setCursorPos(1,2)
mon.clearLine()
mon.write("Quarry: Wylaczone")
end
if colors.test( rin, colors.pink) == true then
mon.setCursorPos(1,3)
mon.clearLine()
mon.write("Rafineria: Wlaczona")
else
mon.setCursorPos(1,3)
mon.clearLine()
mon.write("Rafineria: Wylaczona")
end
end
Errors(after changing things in monitor menu):
THIS CODE IS IN POLISH LANGUAGE
WORKING I'M FIXED THIS :(/>/>