I am interested in switching my crosshair in different classes. I want my scout to have konr crosshair enabled and I want my solly to have fog crosshair enabled. I have no idea. Help
You can use the hud minmode and that will give you 2 separate crosshairs. For one do
visible "0"
visible_minmode "1"
and on the other do
visible "1"
visible_minmode "0"
Then you can set up a bind or something to switch between the two
like "bind p incrementvar cl_hud_minmode 0 1 1"
Theres a way to do it with achievement tracker too but I'm not familiar with that method
visible "0"
visible_minmode "1"
and on the other do
visible "1"
visible_minmode "0"
Then you can set up a bind or something to switch between the two
like "bind p incrementvar cl_hud_minmode 0 1 1"
Theres a way to do it with achievement tracker too but I'm not familiar with that method
Okay, would i put that inside my scout cfg or in my hudlayout in my custom folder?
The visible stuff all should be there under the crosshairs themselves in hudlayout
The bind to switch between the two should be in your autoexec, or alternatively just put
cl_hud_minmode 0
and
cl_hud_minmode 1
in the respective class cfgs for each class. The only issue is you will have to use one of those two crosshairs for every class you cant disable both very easily
As an example heres one of my crosshairs
"CrossHairRequest"
{
"controlName" "CExLabel"
"fieldName" "CrossHairRequest"
"visible" "0"
"visible_minmode" "1"
"enabled" "1"
"zpos" "1"
"xpos" "c-11"
"ypos" "c-11"
"wide" "21"
"tall" "21"
"font" "CrossHairRequest"
"labelText" "+"
"fgcolor" "65 235 0 255"
"textAlignment" "center"
}
The bind to switch between the two should be in your autoexec, or alternatively just put
cl_hud_minmode 0
and
cl_hud_minmode 1
in the respective class cfgs for each class. The only issue is you will have to use one of those two crosshairs for every class you cant disable both very easily
As an example heres one of my crosshairs
[code] "CrossHairRequest"
{
"controlName" "CExLabel"
"fieldName" "CrossHairRequest"
"visible" "0"
"visible_minmode" "1"
"enabled" "1"
"zpos" "1"
"xpos" "c-11"
"ypos" "c-11"
"wide" "21"
"tall" "21"
"font" "CrossHairRequest"
"labelText" "+"
"fgcolor" "65 235 0 255"
"textAlignment" "center"
}[/code]