@sockeye-d for super fast square filler Image format: x:y,z|a:b,c commands: c -> changes color -> the first 3 digits are for color, the next 3 for saturation, and the next 3 for brightness. To represent black, you do the following: c:000000000 bg -> fills screen with chosen color, Example: c:064090100|bg:| -> blue background (no parameters required) rec -> draws a rectangle/square. Here are the parameters: rec[x][y][width][height][corner] (set corner to 1 if you don't want any, 0 won't work.) Using this, you can draw a black square in the center like: c:000000000|rec:0,0,50,50,1| p -> draws a line from x1, y1 to x2, y2. For example: To draw a line across the screen you do: p:-240,-180,240,180,1| (the 1 is for pen size, if you do 2 then it will be 2 times bigger.)