Posted 02 November 2017 - 03:12 PM
I started trying to make an uno game using computercraft,
however I was stopped very shortly because I need to fill
my monitor with 1 high 1 wide windows me being me I thought
I could do it like this however it doesn't work any help is appreciated,
I can normally do almost anything I want with computercraft,
but this seems to of thrown me this is my current code:
however I was stopped very shortly because I need to fill
my monitor with 1 high 1 wide windows me being me I thought
I could do it like this however it doesn't work any help is appreciated,
I can normally do almost anything I want with computercraft,
but this seems to of thrown me this is my current code:
--initial setup
rednet.open("right")
mon = peripheral.wrap("top")
rednet.host("uno","P1")
pro = "uno"
x,y = mon.getSize()
for yy = 1, y do
for xx = 1, x do
yyy = tostring(yy)
xxx = tostring(xx)
var = yyy..","..xxx
(var) = window.create(mon,xx,yy,1,1,true)
(var).setBackgroundColor(colors.gray)
(var).clear()
end
end