In Need of help for cs

Alizak

Sleestack
I am confused because i have cs and i created my own steam skin and when i put it on everythingw as fine besides the text that others type is huge and the top left were it shows who killed who is huge and i have the highest resolution you can have and i use OpenGL. Does anyone know what the problem could be?
 
I don't see why a steam skin would alter the size of text in-game. I've got a custom skin on mine and everything is normal. I've never even heard of the in-game text getting bigger without a resolution adjustment before.
 
I can tell you how to fix it.. But im at work and the files i have are at home. Gimme 5 hours and i will tell you.
 
Ok im home. Open trackerscheme.res in notepad and there is a section for fonts. The standard fotn set is this code:

//
//////////////////////// FONTS /////////////////////////////
//
// describes all the fonts
Fonts
{
// fonts are used in order that they are listed
// fonts listed later in the order will only be used if they fulfill a range not already filled
// if a font fails to load then the subsequent fonts will replace
"Default"
{
"1"
{
"name" "Tahoma"
"tall" "16"
"weight" "0"
}
}
"DefaultUnderline"
{
"1"
{
"name" "Tahoma"
"tall" "16"
"weight" "0"
"underline" "1"
}
}
"DefaultSmall"
{
"1"
{
"name" "Tahoma"
"tall" "13"
"weight" "0"
}
}
"DefaultVerySmall"
{
"1"
{
"name" "Tahoma"
"tall" "12"
"weight" "0"
}
}
"MenuLarge"
{
"1"
{
"name" "Verdana"
"tall" "18"
"weight" "1000"
"antialias" "1"
}
"2"
{
"name" "Arial"
"tall" "18"
"weight" "800"
"antialias" "1"
}
}

// this is the symbol font
"Marlett"
{
"1"
{
"name" "Marlett"
"tall" "14"
"weight" "0"
"symbol" "1"
}
}

"EngineFont"
{
"1"
{
"name" "Verdana Bold"
"tall" "12"
"weight" "0"
"yres" "480 599"
"dropshadow" "1"
}
"2"
{
"name" "Verdana Bold"
"tall" "13"
"weight" "0"
"yres" "600 767"
"dropshadow" "1"
}
"3"
{
"name" "Verdana Bold"
"tall" "14"
"weight" "0"
"yres" "768 1023"
"dropshadow" "1"
}
"4"
{
"name" "Verdana Bold"
"tall" "20"
"weight" "0"
"yres" "1024 1199"
"dropshadow" "1"
}
"5"
{
"name" "Verdana Bold"
"tall" "24"
"weight" "0"
"yres" "1200 6000"
"dropshadow" "1"
}
"6"
{
"name" "Verdana"
"tall" "12"
"weight" "600"
"dropshadow" "1"
}
"7"
{
"name" "Arial"
"tall" "11"
"weight" "800"
"dropshadow" "1"
}
}

"CreditsFont"
{
"1"
{
"name" "Trebuchet MS"
"tall" "18"
"weight" "600"
"antialias" "1"
}
"2"
{
"name" "Arial"
"tall" "18"
"weight" "600"
"dropshadow" "1"
}
}

"Legacy_CreditsFont" // Added to accomodate 3rd party server plugins etc. This version should not scale.
{
"1"
{
"name" "Trebuchet MS"
"tall" "20"
"weight" "700"
"antialias" "1"
"yres" "1 10000"
}
"2"
{
"name" "Arial"
"tall" "20"
"weight" "600"
"dropshadow" "1"
}
}
}
 
Back
Top