Urban Terror Forums: what do you set your field of vision at? - Urban Terror Forums

Jump to content

 Login | Register 
Advertisement
  • (12 Pages)
  • +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • This topic is locked

what do you set your field of vision at? Rate Topic: ***** 1 Votes

Poll: what do you set your field of vision at? (257 member(s) have cast votes)

what do you set your field of vision at?

  1. 90 (34 votes [13.18%])

    Percentage of vote: 13.18%

  2. 95 (11 votes [4.26%])

    Percentage of vote: 4.26%

  3. 100 (35 votes [13.57%])

    Percentage of vote: 13.57%

  4. 105 (21 votes [8.14%])

    Percentage of vote: 8.14%

  5. 110 (157 votes [60.85%])

    Percentage of vote: 60.85%

Vote

#1 User is offline   Princebuster Icon

Posted 27 September 2008 - 10:23 PM

I was fiddling wiht this the other night and was wondering how people set their own. It appeared to me that a lower FOV gave you a larger view of what was in front of you...making it easier to aim at whats in front of you, and a larger FOV gave you a more expansive view of what's around you, giving you more control of your immediate surroundings. I could be wrong though.

#2 User is offline   Longbeachbean Icon

  •   community admin   

Posted 27 September 2008 - 10:25 PM

110

#3 User is offline   Nightcrawl (old) Icon

  • Joined: 03-January 08
  • Posts: 669
  • LocationSweden

Posted 27 September 2008 - 10:39 PM

I use both 90 and 110, so I voted 100.

90 for long distance and 110 for close-up.

#4 User is offline   Nexu Icon

  •   clan leader   
  • Account: nexu
  • Main tag: |it|
  • Country:
  • Joined: 26-June 07
  • Posts: 4,265

Posted 27 September 2008 - 10:40 PM

104, but i have a fov toggle script to change it to 90 when i need to hit long distance targets that are hiding behind stuff like crates.

#5 User is offline   ObScUrE Icon

  •   head moderator   
    Co-Chief Community Moderator
  • Account: obscure
  • Country:
  • Joined: 28-February 10
  • Posts: 2,192

Posted 27 September 2008 - 10:56 PM

I use 110 but over "press and hold" i can change it to 90.

bullet_loaderAdvertisement

#6 User is offline   Princebuster Icon

Posted 27 September 2008 - 11:34 PM

Quote

104, but i have a fov toggle script to change it to 90 when i need to hit long distance targets that are hiding behind stuff like crates.


care to share that with us? :D

so wait...do you have that bound to your zoom in button or something? Also, do you have your gun drawn or not, because i find that the gun is gigantic in 90 FOV.

#7 User is offline   Princebuster Icon

Posted 27 September 2008 - 11:34 PM

Quote

I use 110 but over "press and hold" i can change it to 90.


press and hold?

#8 User is offline   Nexu Icon

  •   clan leader   
  • Account: nexu
  • Main tag: |it|
  • Country:
  • Joined: 26-June 07
  • Posts: 4,265

Posted 27 September 2008 - 11:43 PM

Quote

care to share that with us? :D

so wait...do you have that bound to your zoom in button or something? Also, do you have your gun drawn or not, because i find that the gun is gigantic in 90 FOV.

// LOW FOV settings
seta fovlo_size       "cg_fov 90"
seta fovlo_sens       "sensitivity 4.655"
seta fovlo_crosshair  "cg_drawcrosshair 8; cg_crosshairsize 18"
seta fovlo_chcolor    "cg_crosshairrgb 1,0,0,1"
seta fovlo_hand       "cg_drawhands 0"
seta fovlo "vstr fovlo_size; vstr fovlo_sens; vstr fovlo_crosshair; vstr fovlo_chcolor; vstr fovlo_hand"
vstr fovlo
// HI FOV settings
seta fovhi_size       "cg_fov 104"
seta fovhi_sens       "sensitivity 4.655"
seta fovhi_crosshair  "cg_drawcrosshair 8; cg_crosshairsize 21"
seta fovhi_chcolor    "cg_crosshairrgb 0,1,1,1"
seta fovhi_hand       "cg_drawhands 1"
seta fovhi "vstr fovhi_size; vstr fovhi_sens; vstr fovhi_crosshair; vstr fovhi_chcolor; vstr fovhi_hand"
vstr fovhi

// scrollwheel functions
set set_zoom          "set do_wheelup ut_zoomin;              set do_wheeldown ut_zoomout"
set set_weap          "set do_wheelup ut_weaptoggle primary;  set do_wheeldown ut_weaptoggle secondary sidearm"
set set_wheelmode_1   "vstr set_zoom; set set_wheelmode vstr set_wheelmode_2"
set set_wheelmode_2   "vstr set_weap; set set_wheelmode vstr set_wheelmode_1"
set set_wheelmode     "vstr set_wheelmode_1"
vstr set_wheelmode_2  // default mode for wheel

// fov & mousewheel mode switch
set do_zoom_on        "ut_zoomin;     vstr fovlo;   vstr set_wheelmode_1;  set do_zoom vstr do_zoom_off"
set do_zoom_off       "ut_zoomreset;  vstr fovhi;   vstr set_wheelmode_2;  set do_zoom vstr do_zoom_on"
set do_zoom           "vstr do_zoom_on"

// binds
bind MWHEELUP         "vstr do_wheelup"                     // zoom-in/primary and secondary (DONT CHANGE)
bind MWHEELDOWN       "vstr do_wheeldown"                   // zoom-out/sidearm (DONT CHANGE)
bind MOUSE4           "+vstr do_zoom_on do_zoom_off"        // zoom/fov toggle



If you don't like press-n-hold , you can use this:

bind MOUSE4           "vstr do_zoom"        // zoom/fov toggle



Also see my config

#9 User is offline   |ALPHA|Pancakes (old) Icon

  • Joined: 31-July 08
  • Posts: 804

Posted 28 September 2008 - 12:04 AM

I used to use a smaller FOV, but I switched to 110 when I got my shiny new widescreen monitor.  Well, it's not so new now, but it's still shiny.  :-D

#10 User is offline   ObScUrE Icon

  •   head moderator   
    Co-Chief Community Moderator
  • Account: obscure
  • Country:
  • Joined: 28-February 10
  • Posts: 2,192

Posted 28 September 2008 - 12:20 AM

Here is a Cut-Down version of my code. I have it made much smaller Hud Settings, Map Settings, etc...

//PRESS AND HOLD ZOOM//
set do_zoom_on           "ut_zoomin; vstr fov_small"
set do_zoom_off          "ut_zoomreset; vstr fov_wide"
set fov_small            "cg_fov 90"
set fov_wide             "cg_fov 110"
bind MOUSE2              "+vstr do_zoom_on do_zoom_off"
//END//



  • (12 Pages)
  • +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • This topic is locked

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users

Advertisement


Copyright © 1999-2024 Frozensand Games Limited  |  All rights reserved  |  Urban Terror™ and FrozenSand™ are trademarks of Frozensand Games Limited

Frozensand Games is a Limited company registered in England and Wales. Company Reg No: 10343942