Hello, friends of AlliedModders. I've installed new GUI for my counter strike and when i begin to play I saw so little fonts for amx menus and half life text. After search on all the code I've found the "solution" to this:
Search trackerscheme.res file on folder cstrike\resources.
On this file you willl found a lot of styles declaration similar to stylesheets (css), then you need to search this properties: "CreditsFont" and "Legacy_CreditsFont".
Well, you need replace this (for example):
PHP Code:
"CreditsFont" // amx text
{
"1"
{
// Properties that make amx fonts worse and hard to read.It's not important if isn't equal like you have
"name" "Tahoma"
"tall" "14"
"weight" "700"
"antialias" "1"
"yres" "1 10000"
}
}
For this default value of counter strike trackerscheme.res:
PHP Code:
"CreditsFont"
{
"1"
{ // Default cs style for amx menu
"name" "Trebuchet MS"
"tall" "22"
"weight" "600"
"antialias" "1"
}
}
Do the same for "Legacy_CreditsFont" and replace for:
PHP Code:
"Legacy_CreditsFont"
{
"1"
{ // Default values of cs style.
"name" "Tahoma"
"tall" "12"
"weight" "700"
"antialias" "1"
"yres" "1 10000"
}
}
Thanks for read this. That's all .
Sorry for my english I speak spanish and I try to do the best.