+ Reply to Thread
Page 6 of 6 FirstFirst ... 4 5 6
Results 51 to 52 of 52

Thread: Is zooming vital? (and some binding issues)

  1. #51
    *kadle
    Guest
    Quote Originally Posted by vurun View Post
    It works perfectly for me ... it is copy pasted from my autoexec.cfg. I'll do it again here, sorry for repeating it:

    Code:
    // Define zoom levels
    set fov1 "cg_zoomfov 80;cg_zoomsensitivity 1"
    set fov2 "cg_zoomfov 55;cg_zoomsensitivity 1"
    set fov3 "cg_zoomfov 35;cg_zoomsensitivity 1"
    set fov4 "cg_zoomfov 20;cg_zoomsensitivity 1"
    
    // Define zoom cycle
    set sfov1 "vstr fov1; set lzoom vstr sfov1; set mzoom vstr sfov2"
    set sfov2 "vstr fov2; set lzoom vstr sfov1; set mzoom vstr sfov3"
    set sfov3 "vstr fov3; set lzoom vstr sfov2; set mzoom vstr sfov4"
    set sfov4 "vstr fov4; set lzoom vstr sfov3; set mzoom vstr sfov4"
    
    // Set default zoom
    vstr sfov2
    
    // Bind gradual zoom to mouse wheel up/down
    bind mwheelup "vstr mzoom"
    bind mwheeldown "vstr lzoom"
    
    // Reset zoom to default with mousewheel press.
    bind mouse3 "vstr sfov2"
    Are you sure you remember to include the line (it defines the variables mzoom and lzoom which are bound to wheelup and wheeldown):

    Code:
    // Set default zoom
    vstr sfov2
    You may have conflicting binds/variables.

    Best Regards
    Kadle
    Last edited by kadle; 07-26-2012 at 12:26 AM.

  2. #52
    Senior Member vurun is on a distinguished road vurun's Avatar
    Join Date
    Feb 2012
    Location
    Russia, Moscow
    Posts
    351
    Thank u, I'll look into it. I have major cfg changes, so maybe there is a conflict indeed
    Join the mighty DRUNKS

    K/D ratio: <1 and still dropping

    QL doesn't need more tiers, it needs more players (С)

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts