Simba Code:
Procedure DrawCustomPaint(st, cp, eg, tg, ca, tr, eh: string);
var PaintPic: integer;
begin
SMART_ClearCanvas;
PaintPic := BitmapFromString(516, 157, 'thebitmap');
SMART_DrawBitmap(False, PaintPic, Point(0, 225));
FreeBitmap(PaintPic);
SMART_DrawText(93,264, UpChars07, 'Status: ', 14545386); //drawing the word status
SMART_DrawText(143,264, Upchars07, st, 14545386);
SMART_DrawText(93,304, UpChars07, 'Competitions Played: ', 14545386); //drawing the word competitions played
SMART_DrawText(234,304, UpChars07, cp, 14545386);
SMART_DrawText(318,304, UpChars07, 'Exp Gained: ', 14545386);
SMART_DrawText(397,304, UpChars07, eg, 14545386);
SMART_DrawText(93,324, UpChars07, 'Tickets Gained: ', 14545386);
SMART_DrawText(195,324, UpChars07, tg, 14545386);
SMART_DrawText(93,344, UpChars07, 'Competitions Before Wielding Arrows: ', 14545386);
SMART_DrawText(342,344, UpChars07, ca, 14545386);
SMART_DrawText(375,354, UpChars07, ForumName, 425678)
SMART_DrawText(93,284, UpChars07, 'Time Running: ', 14545386);
SMART_DrawText(184,284, UpChars07, TimeRunning, 14545386);
SMART_DrawText(318,324, UpChars07, 'Exp Per Hour: ', 14545386);
SMART_DrawText(408,324, UpChars07, eh, 14545386);
end;