Forum
per-weapon crosshair configs
Created 4th February 2009 @ 19:42
Add A Reply Pages: « Previous 1 2 3 Next »
which character? alt+ ?
Just copy and paste. I took this from a CS config which was using a bug to do say messages in colours using some characters.
I just want a different colour crosshair (don’t care what colour/size/shape etc) for my primary and secondary weapons (all classes).
I also use this weapon switching script:
alias primary “slot1; wait; bind MWHEELUP secondary”
alias secondary “slot2; wait; bind MWHEELUP primary”
bind “MWHEELUP” “primary”
alias primary2 “slot1; wait; bind MWHEELDOWN secondary2”
alias secondary2 “slot2; wait; bind MWHEELDOWN primary2”
bind “MWHEELUP” “primary”
bind “MWHEELDOWN” “primary2”
alias melee “slot3; bind MOUSE3”
bind “MOUSE3” “melee”
Is their a basic one some one could point me in the direction of?
thanks :)
“I just want a different colour crosshair (don’t care what colour/size/shape etc) for my primary and secondary weapons (all classes).
I also use this weapon switching script:
[…]
”
I think you can use the following. You can change the colours to whatever you like best. I also cleaned up your binds a little but they should work the same.
alias wpn1 “slot1; cl_crosshair_red 255; cl_crosshair_green 0; cl_crosshair_blue 255”
alias wpn2 “slot2; cl_crosshair_red 0; cl_crosshair_green 255; cl_crosshair_blue 0”
alias melee “slot3″
alias primary “wpn1; wait; bind MWHEELUP secondary; bind MWHEELDOWN secondary”
alias secondary “wpn2; wait; bind MWHEELUP primary; bind MWHEELDOWN primary”
bind MWHEELDOWN “secondary”
bind MWHEELUP “secondary”
bind MOUSE3 “melee”
//Shotgun-Minigun
alias sr1 “slot2;cl_crosshair_file “crosshair3″;wait;alias sr sr2”
alias sr2 “slot1;wait;alias sr sr1; cl_crosshair_file ”
alias sr sr1
why doesnt it work for me
i have tried like literally everything: copying from anakin, alt 0160 and using that stuff from admirable
it just wont switch to normal xhair!
instead it just echos the current xhair in the console as if you would only enter cl_crosshair_file without a value
It’s because of the cl_crosshairfile command Riemu, you cannot use it in aliases because it requires a set of “”‘s, you can only use it in direct binds.
alias sr1 “slot2;cl_crosshair_file crosshair3;wait;alias sr sr2″
alias sr2 “slot1;wait;alias sr sr1; cl_crosshair_file ”
alias sr sr1
That should work.
Just take out the quotes from around crosshair3.
As I figure when it reads it it just thinks you are closing the first set of quotes.
copied your admirable – now the weapon switch doesnt even work anymore
HEAVYWEAPONS.cfg loaded
“cl_crosshair_file” = “”
client archive
(TEAM) /v Riemu : np: heavy
Unknown command: �
those switches screw some of my cfgs pretty bad atm, I’m sticking with the green dot
Hi !
Does anybody know a script to get different viewmodel_fov values for different weapons ?
I would like viewmodel_fov 0 on my rocket launcher so I don’t have to see it, but I would like my shotgun visible with the value viewmodel_fov 70 for example.
Here’s what i use for pistol/scattergun toggle:
alias defCrosshair “cl_crosshair_file crosshair1; cl_crosshair_scale 40; cl_crosshair_red 0; cl_crosshair_green 255; cl_crosshair_blue 0”
alias dotCrosshair “cl_crosshair_file crosshair5; cl_crosshair_scale 32; cl_crosshair_red 0; cl_crosshair_green 255; cl_crosshair_blue 0”
alias sws1 “dotCrosshair; reload_off; attack; slot2; alias swsT sws2”
alias sws2 “defCrosshair; sws; slot1; alias swsT sws1”
alias swsT sws1
alias +sws “-reload; +attack”
alias -sws “-attack; +reload”
alias sws “bind mouse1 +sws”
alias attack “bind mouse1 +attack”
alias reload_off “-attack;-attack2;-reload”
I hope you will find something useful :)
Add A Reply Pages: « Previous 1 2 3 Next »