Ссылка на Сообщение
#1
6.2.2010, 16:12
Crosshair Color Script
This would be my first submitted script.
What this does is makes your crosshair red when you're shooting, and yellow when you put on a silencer/change fire mode/reload, and green when idle. Simple as that.
How to install:
Make a text file, name it "crosshair.cfg" or something like that. Copy and paste the script into it, then save it in Steam/Steamapps/Your Account/Counter-strike source/cstrike/cfg
Then you're pretty much done. To activate it in-game, type "exec crosshair(or whatever you named it)"
This would be my first submitted script.
What this does is makes your crosshair red when you're shooting, and yellow when you put on a silencer/change fire mode/reload, and green when idle. Simple as that.
How to install:
Make a text file, name it "crosshair.cfg" or something like that. Copy and paste the script into it, then save it in Steam/Steamapps/Your Account/Counter-strike source/cstrike/cfg
Then you're pretty much done. To activate it in-game, type "exec crosshair(or whatever you named it)"
CODE
Alias +r "cl_crosshaircolor 1; +attack"
alias -r "cl_crosshaircolor 0; -attack"
alias +y "cl_crosshaircolor 3; +attack2"
alias -y "cl_crosshaircolor 0; -attack2"
alias +nm "cl_crosshaircolor 3; +reload"
alias -nm "cl_crosshaircolor 0; -reload"
bind mouse1 +r
bind mouse2 +y
bind r +nm
alias -r "cl_crosshaircolor 0; -attack"
alias +y "cl_crosshaircolor 3; +attack2"
alias -y "cl_crosshaircolor 0; -attack2"
alias +nm "cl_crosshaircolor 3; +reload"
alias -nm "cl_crosshaircolor 0; -reload"
bind mouse1 +r
bind mouse2 +y
bind r +nm