string title = "BIG TITLE"; string subtitle = "Secondary Title"; string color = "WHITE"; // CAN CHANGE TO "BLACK" FOR LIGHT BACKGROUNDS integer largefont = 24; integer smallfont = 18; integer Touched = FALSE; default { state_entry() { string DrawList = ""; DrawList += "FontSize "+ (string)largefont +";"; DrawList = osSetPenColor(DrawList, color); DrawList = osMovePen( DrawList, 10, 10); DrawList = osDrawText( DrawList, title); DrawList = osMovePen( DrawList, 10, 20+largefont ); DrawList += "FontSize "+ (string)smallfont +";"; DrawList = osDrawText( DrawList, subtitle); osSetDynamicTextureDataBlendFace( "", "vector", DrawList, "width:256,height:256,alpha:0", FALSE, 1, 0, 0, 1 ); } }