Hi,
Lets follow Garm3n Version and CrossHairNormal.
In the scripts folder and hudlayout.res you'll find:
CrossHairNormal
{
"controlName" "CExLabel"
"fieldName" "CrossHairNormal"
"visible" "1″
"enabled" "1″
"zpos" "1″
"xpos" "c-12″
"ypos" "c-15″
"wide" "25″
"tall" "25″
"font" "CrossHairNormal"
"labelText" "+"
"fgcolor" "255 255 255 255″
"textAlignment" "center"
}
Take a look at the "font" name, "CrossHairNormal".
Go to your resource folder and then ClientScheme.res.
Scroll down a bit until you find:
"CrossHairNormal"
{
"1″
{
"name" "Symbol"
"tall" "28″
"weight" "0″
"additive" "0″
"outline" "1″
}
}
Take a look at the "name", "Symbol", that's the font.
Scroll down to the bottom. There you'll find:
"8″
{
"font" "resource/symbol.ttf"
"name" "symbol"
}
In your resource folder you'll find a font file called symbol. Double click on it and you'll see it's name, Symbol. That's the name you use in the "CrossHairNormal" script in ClientScheme.res:
"CrossHairNormal"
{
"1″
{
"name" "Symbol"
"tall" "28″
"weight" "0″
"additive" "0″
"outline" "1″
}
}
If you right click on the font file and choose Properties you'll see the name symbol and (.ttf). That's what you use in the font script in ClientScheme.res:
"8″
{
"font" "resource/symbol.ttf"
"name" "symbol"
}
Hope you get it.