Im a total config tard so i need advice. Is it possible to add commands to my config that will lower my mouse sensitivity when using the LG but only when the +attack button is in use?
Im a total config tard so i need advice. Is it possible to add commands to my config that will lower my mouse sensitivity when using the LG but only when the +attack button is in use?
i think so but i don't remember what it is =\
I would think that with a TON of tweaking it'd be possible, but I really can't think of any way that you could do it. I highly doubt that it would work unless id added the ability to change the settings per weapon.
Have a nice FALL!
(o^.^o) PIKA PIKA!
The Search Bar is your friend...use it.
Problem? Check here!
Tastyspleen TastyCast
Why CTF4 is bad
Its quite possible,
but youd have to set multiple binds to 1 key to turn it on, and another to turn it off.
like this
/bind F +weapon6; mouse1 +attack; sensitivity 0,5;
/bind mouse2 sensitivity 1;+moveup; bind mouse1 +attack
that way, on pressing F you should pickup your LG, when you press the mouse1 it will set your sensitivity to 0,5, when you press mouse2 sensitivity is set back to 1,0, and will be used for jumping.
or something like that, havent really tried it, would seem awkward, i just have a different sensi for each weapon, though it just changes slightly (+-20%)
ID would have to include a 'on-release' function to do it with 1 key
Last edited by un1tyNL; 08-10-2011 at 11:12 AM.
http://www.quakelive.com/forum/showt...nd-sensitivity
This thread should help although I haven't tried it or read it all.
Thanks for the replies guys, I'll try and follow the advice in the thread Nerr linked to, looks promising.
bind [key] "weapon 1 ; vstr regweap"
bind [key] "weapon 2 ; vstr regweap"
bind [key] "weapon 3 ; vstr regweap"
bind [key] "weapon 4 ; vstr regweap"
bind [key] "weapon 5 ; vstr regweap"
bind [key] "weapon 6 ; vstr lgweap"
bind [key] "weapon 7 ; vstr regweap"
bind [key] "weapon 8 ; vstr regweap"
bind [key] "weapon 9 ; vstr regweap"
set regweap "sensitivity x ; bind mouse1 +attack"
set lgweap "bind mouse1 +lgattack"
alias +lgattack "sensitivity y ; +attack"
alias -lgattack "-attack ; sensitivity x"
Replace [key] with what key you use to select that weapon.
Replace x with your regular sensitivity, and y with the lowered value you wish to use only when LG'ing.
Last edited by Lorfa; 08-10-2011 at 01:43 PM.
Have a nice FALL!
(o^.^o) PIKA PIKA!
The Search Bar is your friend...use it.
Problem? Check here!
Tastyspleen TastyCast
Why CTF4 is bad
bind MOUSE1 "+zfire"
alias -zfire "-attack; sensitivity 13.5; cl_mouseAccel 0.02"
alias +zfire "+attack"
alias _DefFire "alias +zfire +attack"
alias _LgFire "alias +zfire _LgFire2"
alias _LgFire2 "+attack; sensitivity 12; cl_mouseAccel 0"
bind 1 "weapon 1; _DefFire"
bind q "weapon 2; _LgFire"
bind MWHEELUP "weapon 3; _DefFire"
bind f "weapon 4;_DefFire"
bind MOUSE4 "weapon 5; _DefFire"
bind MOUSE5 "weapon 6; _LgFire"
bind e "weapon 7; _DefFire"
bind MWHEELDOWN "weapon 8; _DefFire"
bind 3 "weapon 9; _DefFire"
bind r "weapon 10; _DefFire"
bind 2 "weapon 11; _DefFire"
bind v "weapon 12; _DefFire"
bind c "weapon 13; _DefFire"
From my config. Lower sense/no accel for LG and MG.
(:
I've made it this way. Before I 've got a problem, when I switched weapon when holding fire button, it kept firing afterwards. Maybe it can me made easier, but oh, it works
Ah, different crosshair, so you know which behaviour you should expect.
bind 1 "weapon 2;weap_00" //Machinegun
bind 2 "weapon 3;weap_00" //Shotgun
bind 3 "weapon 4;weap_00" //Grenade
bind q "weapon 5;weap_00" //RL
bind r "weapon 8;weap_00" //Plasma
bind e "weapon 6;weap_lg" //Lightning
bind v "weapon 7;weap_rg" //Rail
bind z "weapon 1;weap_00" //Gauntlet
bind n "weapon 11;weap_00" //Nailgun
bind c "weapon 13;weap_00" //Chaingun
bind 7 "weapon 13;weap_00" //Chaingun
bind 8 "weapon 11;weap_00" //Nailgun
bind 9 "weapon 12;weap_00" //Proximity Mine
bind 0 "weapon 9;weap_00" //BFG
alias weap_lg "cg_drawcrosshair 2;cg_crosshairsize 40;cg_crosshaircolor 5 ;cg_crosshairhitstyle 2;bindsLG ;-attRG"
alias weap_rg "cg_drawcrosshair 1;cg_crosshairsize 24;cg_crosshaircolor 26;cg_crosshairhitstyle 1;bindsRG;-attLG "
alias weap_00 "cg_drawcrosshair 1;cg_crosshairsize 24;cg_crosshaircolor 26;cg_crosshairhitstyle 1;binds00;-attLG;-attRG"
alias +attLG "sensitivity 1.8;+attack"
alias -attLG "sensitivity 3;-attack"
alias +attRG "cg_railtrailtime 50;+attack"
alias -attRG "-attack;cg_railtrailtime 800"
alias bindsLG "bind mouse1 +attLG"
alias bindsRG "bind mouse1 +attRG"
alias binds00 "bind mouse1 +attack"