Comm Mode Mouse Edge Scroll Problems
Immacolata
Join Date: 2002-11-01 Member: 2140Members, NS1 Playtester, Contributor
<div class="IPBDescription">It's too sensitive.</div> Often when I comm in 1.04 I feel the mouse edge scrolling is too sensitive or fast. I often find myself swerving around on the map because too often the mouse pointer comes too close to the edge. I wonder if I can turn off mouse edge scrolling, or if one for version 1.1 could make it optional or LESS sensitive/fast?
Comments
hope it helps m8 =)
hope it helps m8 =) <!--QuoteEnd--> </td></tr></table><span class='postcolor'> <!--QuoteEEnd-->
Yeah I should bind a few keys to sensitivity ... how can I do that? Bind, say, + to add .2 to sensitivity and bind - to subtract .2 to sensitivity. You know?
better to just have bind "+" "sensitivity 3";bind "-" "sensitivity 7" (whatever numbers you want)
The best way to describe the script to do what you say would have to be a list that you move up and down.
eg; (starting at sens 5)
when you press '+' it executes 'sensitvity 5.2;bind "+" "sensitivity 5.4";bind "-" "sensitivity 5"' and each time they would have to be rebound in the script. All a bit messy, but if thats what you want you'll to to look up some script tutorials (search 'zmalloc' on google)
Drop this in config.cfg
alias radio "developer 1;echo 1-Sensitivity 1 2-Sensitivity 3.5;exec sensitivity.cfg;developer 0"
bind "x" "radio"
Drop this in a new config called sensitivity.cfg (just make a new .txt file and rename it .cfg)
bind "1" "sensitivity 1;exec config.cfg"
bind "2" "sensitivity 2;exec config.cfg"
That should make some text at the top of your screen showing what selection you want, exec the sensitivity config, then go back to the normal config. Rebinding of 1 and 2 keys arent needed as execing config.cfg will do that. Feel free to change keys / sensitivity / whatever. Enjoy.