Posted 19 November 2013 - 01:42 AM
Heres My Code
end
Now how do i make it so it assigns a special color to 1 and to 0
term.clear()
term.setCursorPos(1,1)
back = {
"1111111111111";
"1000000000001";
"1111000000001";
"1000000001111";
"1000000000001";
"1000011100001";
"1000000000001";
"1111111111111";
}
for t=1,#back do
term.setBackgroundColor(colors.black)
print(back[t])
end
Now how do i make it so it assigns a special color to 1 and to 0
Edited on 19 November 2013 - 12:42 AM