Zoom sensitivity
-
- Posts: 468
- Joined: Sun May 14, 2000 7:00 am
Zoom sensitivity
Is there a way to configure the sensitivity of the Zoom, when you zoom its like youre sens goes from 3 to 10...so its hard to aim with that sens !!!
[url=http://powerquebec.forumpro.fr/][color=red][b]Fast and furious_[/b][/color]That's what it's all about...[/url][img]http://pages.infinit.net/oldman/rank14.gif[/img]
Seriously? In both SP and MP?Azer wrote:Zoomed machinegun does more damage thoughfacerip wrote:That's because it's not a zoom. It changes your fov to like 20. Just bind a key to lower sensitivity and zoom, and then back to the opposite.
Most good players don't ever zoom. It's not really needed if you have decent aim.
Yes*,you inflict more damage in both singleplayer and multiplayer when using zoom with machinegun
Work in progess *
http://ucguides.savagehelp.com/Quake4/weapons.htm
Work in progess *
http://ucguides.savagehelp.com/Quake4/weapons.htm
Nice link there Req, keep up the good work.Requ!em wrote:Yes*,you inflict more damage in both singleplayer and multiplayer when using zoom with machinegun
Work in progess *
http://ucguides.savagehelp.com/Quake4/weapons.htm

-
- Posts: 520
- Joined: Tue Oct 18, 2005 7:59 pm
That's kind of ridiculous. They compare the weapons to the ones in Q2 and Q1, not the ones in Q3.Requ!em wrote:Yes*,you inflict more damage in both singleplayer and multiplayer when using zoom with machinegun
Work in progess *
http://ucguides.savagehelp.com/Quake4/weapons.htm

Try this:ex-28 wrote:i just need a script so that when u zoom in its not so sensitive, cant even move the mouse without it jumping all over the place.
Code: Select all
// Zoom script that changes FOV and sens. Separate keybind required to use real zoom mode for MG (+2 damage) and RG.
set ua_zoom "vstr ua_zoomin"
set ua_zoomin "set ua_zoom vstr ua_zoomout;g_fov 50;sensitivity 3"
set ua_zoomout "set ua_zoom vstr ua_zoomin;g_fov 110;sensitivity 6.8"
bind mouse2 "vstr ua_zoom"
bind w "_zoom"
Last edited by Oeloe on Sun Oct 23, 2005 9:04 pm, edited 1 time in total.
Mouse2 (your right mouse button) executes the zoom script (lowers FOV and sens). The W bind uses the built-in _zoom function that enables sniper mode for the MG (does 7 damage instead of 5 in normal mode).Psyche911 wrote:I don't get it. What are the functions of mouse2 and w exactly, and how do they differ??
The problem is you can't combine commands that begin with _, like _zoom and _impulse2. So with my script you need to click mouse2 and then hit W to have low sens with the MG in zoom mode. There isn't another way currently afaik.