================================================================================ == The SMTC Ordinary Drawing Guide == ================================================================================ This guide is a simple listing of the regular draw commands available in SMTC. These drawing codes may be used in the following areas: The Subscreen script A script for drawing a custom Background And here they are! Pixel(x, y, r, g, b) Draws a single pixel at x, y with rgb as the colour. FRect(x1, y1, x2, y2, r, g, b) Draws a rectangle of solid colour from x1,y1 to x2,y2 of colour rgb. URect(x1, y1, x2, y2, r, g, b) Same as FRect, except the box is hollow. Only the outer edge is filled. Line(x1, y1, x2, y2, r, g, b) Draws a line from x1,y1 to x2,y2 of colour rgb. Just place these on the appropriate lines as they are. The variables are self- explanatory.