Upvote Upvoted 2 Downvote Downvoted
How do you switch custom crosshairs betweenclasses
posted in Customization
1
#1
1 Frags +

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

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
2
#2
1 Frags +

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

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
3
#3
0 Frags +

Okay, would i put that inside my scout cfg or in my hudlayout in my custom folder?

Okay, would i put that inside my scout cfg or in my hudlayout in my custom folder?
4
#4
1 Frags +

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 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
[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]
5
#5
0 Frags +

Okay, thanks.

Okay, thanks.
Please sign in through STEAM to post a comment.