Ok bear with me here cause this is going to be a lot.
First you need to download the crosshairs font here:
https://dl.dropbox.com/u/21833101/Fog%27s%20Custom%20HUD%20Crosshairs%20v2.0.zip
You're going to place that into your Resource folder for your hud. Next, you need to open up ClientScheme.res and add the following:
Under Bitmap Font Files (Ctrl + F), towards the bottom of this section, you want to paste this:
"Crosshairs8"
{
"1"
{
"name" "Crosshairs"
"tall" "8"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs10"
{
"1"
{
"name" "Crosshairs"
"tall" "10"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs12"
{
"1"
{
"name" "Crosshairs"
"tall" "12"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs14"
{
"1"
{
"name" "Crosshairs"
"tall" "14"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs16"
{
"1"
{
"name" "Crosshairs"
"tall" "16"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs18"
{
"1"
{
"name" "Crosshairs"
"tall" "18"
"weight" "0"
"antialias" "1"
}
}
"CrosshairsOutline18"
{
"1"
{
"name" "Crosshairs"
"tall" "18"
"weight" "0"
"antialias" "1"
"outline" "1"
}
}
"Crosshairs20"
{
"1"
{
"name" "Crosshairs"
"tall" "20"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs22"
{
"1"
{
"name" "Crosshairs"
"tall" "22"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs24"
{
"1"
{
"name" "Crosshairs"
"tall" "24"
"weight" "0"
"antialias" "1"
}
}
"CrosshairsOutline24"
{
"1"
{
"name" "Crosshairs"
"tall" "24"
"weight" "0"
"antialias" "1"
"outline" "1"
}
}
"Crosshairs26"
{
"1"
{
"name" "Crosshairs"
"tall" "26"
"weight" "0"
"antialias" "1"
}
}
"CrosshairsOutline26"
{
"1"
{
"name" "Crosshairs"
"tall" "26"
"weight" "0"
"antialias" "1"
"outline" "1"
}
}
"Crosshairs28"
{
"1"
{
"name" "Crosshairs"
"tall" "28"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs30"
{
"1"
{
"name" "Crosshairs"
"tall" "30"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs32"
{
"1"
{
"name" "Crosshairs"
"tall" "32"
"weight" "0"
"antialias" "1"
}
}
"CrosshairsOutline32"
{
"1"
{
"name" "Crosshairs"
"tall" "32"
"weight" "0"
"antialias" "1"
"outline" "1"
}
}
"Crosshairs34"
{
"1"
{
"name" "Crosshairs"
"tall" "34"
"weight" "0"
"antialias" "1"
}
}
"CrosshairsOutline34"
{
"1"
{
"name" "Crosshairs"
"tall" "34"
"weight" "0"
"antialias" "1"
"outline" "1"
}
}
"Crosshairs36"
{
"1"
{
"name" "Crosshairs"
"tall" "36"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs38"
{
"1"
{
"name" "Crosshairs"
"tall" "38"
"weight" "0"
"antialias" "1"
}
}
"Crosshairs40"
{
"1"
{
"name" "Crosshairs"
"tall" "40"
"weight" "0"
"antialias" "1"
}
}
Next, Ctrl + F to Custom Font Files in ClientScheme.res and install this at the bottom of this section (Note that you need to place the sequential number to the font above this where # is):
"#" // Fog's xHairs
{
"font" "resource/crosshairs.ttf"
"name" "Crosshairs"
}
Save the file and close it out. Now, go to your Scripts folder and open up HudLayout.res. Go to the bottom of the file and paste this in:
ThinCircle
{
"controlName" "CExLabel"
"fieldName" "ThinCircle"
"visible" "1"
"enabled" "1"
"zpos" "2"
"xpos" "c-100"
"ypos" "c-96"
"wide" "200"
"tall" "200"
//"font" "CrosshairsOutline34"
"font" "Crosshairs34"
"labelText" "9"
"textAlignment" "center"
"fgcolor" "255 255 255 255"
}
Save and close this file out. That should give you the circle crosshair seen in the video.
Edit: Make sure that you tab the ENTIRE code over between the brackets. It should look like this: