oh yeah would you make it so we can like scope? like it slows you down, sorta like cod so you can get better aim.
http://dplogin.com/dplogin/featurevote/feature.php?id=10084Also here are 4 variations of a script.
_________________________________________________________
Variation 1
The most simple and effective one. When you roll your mousewheel up you zoom in and the sensitivity goes down. You roll it down and you go back to normal and the sensitivity goes back to normal. (You can change the "fov" and the "sensitivity" to your liking.
bind "MWHEELDOWN" "fov 100;sensitivity 6"
bind "MWHEELUP" "fov 40;sensitivity 2"
Variation 2
This one zooms in when you press a key and zooms out when you let go of the key.
alias +zoom "fov 30;sensitivity 5"
alias -zoom "fov 90;sensitivity 10"
bind mouse2 +zoom
Variation 3
This one zooms in when you hit a key then when you hit the key again it will go closer then when you hit the key once again it will go back. You can also bind it to the mousewheel.
alias zoom0 "fov 120; bind f zoom1"
alias zoom1 "fov 70; bind f zoom2"
alias zoom2 "fov 50; bind f zoom0"
bind f zoom1
Variation 4
This one is bound to the mouse wheel and takes into consideration mouse sensitivity.
bind "MWHEELDOWN" "zoom0"
bind "MWHEELUP" "zoom1"
alias zoom0 "crosshair 16;fov 120;sensitivity 20;bind mwheelup zoom1"
alias zoom1 "crosshair 2;fov 70;sensitivity 10;bind mwheelup zoom2;bind mwheeldown zoom0"
alias zoom2 "fov 50;sensitivity 8;bind mwheelup zoom3;bind mwheeldown zoom1"
alias zoom3 "fov 30;sensitivity 6;bind mwheelup zoom4;bind mwheeldown zoom2"
alias zoom4 "fov 10;sensitivity 4;bind mwheeldown zoom3"