Jerok, MSOn i thought i understood how these3 coordinate works but now im confused
this following cod draws da screen border but last line is making me confused.
LINE 0, 0, 639, 0
LINE 639, 0, 639, 479
LINE 639, 479, 0, 479
LINE 0, 479, 0, 0
MSOn's code is excellent but i understand da x,y cooridnate only not both of dem together
Ink -1,0
Draw2DBox(0,0,639,479)
Wait Key
Function Draw2DBox(x1,y1,x2,y2)
Line x1,y1,x2,y1 : ` Top<<it draws top but in my sense it should draw top and right :P which is obviously worng
Line x1,y2,x2,y2 : ` Bottom
Line x1,y1,x1,y2 : ` Left
Line x2,y1,x2,y2 : ` Right
EndFunction
can sum one tell me how both of this X1,y1,x2,y2 work together
i mean i thot i was gonaa make a game but da way my head is doing im really upset
plz plz plz help me understand dis problem