[Help] Config's Weap, Sens and Zoom.

Locked
xchaser
Posts: 280
Joined: Sat Dec 04, 1999 8:00 am

[Help] Config's Weap, Sens and Zoom.

Post by xchaser »

I am looking for a way to set up my weapons with different sens like in q3. I hear you can do it now since m_accel is now enable.
|-----|
Oeloe
Posts: 1529
Joined: Fri Mar 19, 2004 8:00 am

Post by Oeloe »

m_accel has nothing to do with it. Multibinds are now available (_impulse commands combined with other commands).
xchaser
Posts: 280
Joined: Sat Dec 04, 1999 8:00 am

Post by xchaser »

yea I know accel has nothing to do with it. I am looking for an example. I have no idea where to begin.
|-----|
Oeloe
Posts: 1529
Joined: Fri Mar 19, 2004 8:00 am

Post by Oeloe »

This is an example from what someone who posted at ESR uses:

bind "x" "doImpulse _impulse0;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_9.tga;g_crosshaircolor 1 1 1 1;g_fov 110"

Have you checked the Upsetchaps guide btw? It should be updated for this new functionality (multibinds).
xchaser
Posts: 280
Joined: Sat Dec 04, 1999 8:00 am

Post by xchaser »

thx Oeloe
|-----|
Bueller
Posts: 124
Joined: Tue Feb 22, 2005 3:10 pm

Post by Bueller »

xchaser wrote:yea I know accel has nothing to do with it. I am looking for an example. I have no idea where to begin.
Well this should get you started. I tested this and it works fine. Just make sure all your binds and numeral values are what you want before using. What this is doing is binding each weapon to a key, setting a crosshair, setting a crosshair color, setting your fov, and then finally setting the mouse sensitivity.

bind LEFTCTRL "doImpulse _impulse0;g_crosshairCustomFile 0;g_fov 120;sensitivity 5" //gauntlet

bind LEFTSHIFT "doImpulse _impulse5;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //ng

bind z "doImpulse _impulse9;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //dmg

bind c "doImpulse _impulse8;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //lg

bind 3 "doImpulse _impulse4;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //gl

bind e "doImpulse _impulse6;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //rl

bind f "doImpulse _impulse3;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 120;sensitivity 5" //hp

bind 2 "doImpulse _impulse1;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 110;sensitivity 3" //mg

bind q "doImpulse _impulse2;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 110;sensitivity 3" //sg

bind r "doImpulse _impulse7;g_crosshairCustomFile gfx/guis/crosshairs/crosshair_q3_6.tga;g_crosshaircolor 0 1 0 1;g_fov 110;sensitivity 3" //rg
[color=Green]I Root 4 Chaos ![/color]
`WârHôrse~
Posts: 7
Joined: Wed Oct 26, 2005 6:01 pm

Post by `WârHôrse~ »

I've been messing around with the custom crosshair/weapon deal. Basically I'm using the defualt crosshairs for the singlel playergame, but with custom sizes and colors... A little problem I notice, for instance, I'll have the RL, run out of ammo, then it will auto switch to the next most powerful weapon(lets say RG), but the crosshair from the RL will still be displayed on the hud. I will have to manually press my keybind for the RG to get its own custom crosshair to be shown ont the hud.
Oeloe
Posts: 1529
Joined: Fri Mar 19, 2004 8:00 am

Post by Oeloe »

That's logical isn't it? If you haven't pressed your RG bind, the crosshaircolor and other commands will not be executed. Just press your RG bind when you have 0 ammo and don't fire empty guns instead to switch.
Bueller
Posts: 124
Joined: Tue Feb 22, 2005 3:10 pm

Post by Bueller »

Oeloe wrote:That's logical isn't it? If you haven't pressed your RG bind, the crosshaircolor and other commands will not be executed. Just press your RG bind when you have 0 ammo and don't fire empty guns instead to switch.
Exactly. Its working as designed.
[color=Green]I Root 4 Chaos ![/color]
Locked