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
  • 4
  • 5
  • 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

#21 User is offline   beast Icon

  • Account: beast
  • Joined: 28-February 10
  • Posts: 612

Posted 28 September 2008 - 09:54 PM

Quote

Yeah i got annoyed too by certain things, so i eliminated some of those problems. But tbh, i dont use it often. Most of the time i stick to basic stuff myself.

But i better be shy with too much scripts than shy without (when u need them).


question about your FOV script

I am playing around with your entire script right now

when you zoom in with an automatic does it turn laser off?

#22 User is offline   satiable Icon

  • Account: satiable
  • Joined: 28-February 10
  • Posts: 1,537

Posted 28 September 2008 - 10:06 PM

Quote

//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//




What would I have to do here if I wanted to have do_zoom_on with MOUSE3, but do_zoom_off with MWHEELDOWN ? Everything else the same tho.

What I want is to be able to zoom in and have my fov go to 90 with MOUSE3 and zoom out and return to 110 fov with MWHEELDOWN.

Help plz.

#23 User is offline   Nexu Icon

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

Posted 28 September 2008 - 10:44 PM

Quote

question about your FOV script

I am playing around with your entire script right now

when you zoom in with an automatic does it turn laser off?

Nope, that's a game bug where you cannot see YOUR OWN laser pointer when cg_drawhand is 0 (but laser is still on and you can still see other people's laser dot)

Yes, i have asked before to the devs or they could fix this issue. Answer was no.

#24 User is offline   ObScUrE Icon

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

Posted 29 September 2008 - 12:52 AM

Quote

ObScUrE:
I friggin LOVE YOU...this script is friggin AAAAHMAZING. I'm finally beginning to understand the heavy duty sr8 users!



Thanks :-D

Quote

What would I have to do here if I wanted to have do_zoom_on with MOUSE3, but do_zoom_off with MWHEELDOWN ? Everything else the same tho.

What I want is to be able to zoom in and have my fov go to 90 with MOUSE3 and zoom out and return to 110 fov with MWHEELDOWN.

Help plz.


//TOGGLE 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 MOUSE3              "vstr do_zoom_on"
bind MWHEELDOWN          "vstr do_zoom_off"
//END//


Don´t have it tested now but I think it´s a little bit buggy, because when you zoom in and you shot you have to scroll down for your wide view. :|

#25 User is offline   satiable Icon

  • Account: satiable
  • Joined: 28-February 10
  • Posts: 1,537

Posted 29 September 2008 - 03:44 AM

Hi ObScUrE. Thnx for posting. :-)

Is there any particular way to put that into my q3config? Because when I add those lines to my q3config and then start the game, it works, but as soon as I shut the game down it's like these lines below disappear from the config altogether. :?


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"



The bind MOUSE3 and MWHEELDOWN stay as I changed them though. :| The other 4 lines disappear completely.

And then it doesn't work anymore.

Edit: NVM figured it out. It's suppose to be "seta" not "set". :mrgreen:

bullet_loaderAdvertisement

#26 User is offline   Nexu Icon

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

Posted 29 September 2008 - 03:54 AM

put it in autoexec.cfg

#27 User is offline   satiable Icon

  • Account: satiable
  • Joined: 28-February 10
  • Posts: 1,537

Posted 29 September 2008 - 03:57 AM

It's workin fine in the q3config. It's all organized now. :-) Check my edit. It was right when you posted almost.

#28 User is offline   Nexu Icon

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

Posted 29 September 2008 - 03:59 AM

It's always handier to have settings stored in a file that the engine doesn't rewrite on exit. But yes, seta works.

#29 User is offline   ObScUrE Icon

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

Posted 29 September 2008 - 04:56 AM

I agree with Nexu, it´s better to store your settings in a separate file. :wink:

add this to your autoexec.cfg

exec yourconfig.cfg //<-- My Script Archive

and you can easier add new scripts with a better overview.

#30 User is offline   don Icon

  • Account: don
  • Main tag: GlaD-
  • Joined: 28-February 10
  • Posts: 2,640

Posted 29 September 2008 - 05:02 AM

cg_fov 100

Always.

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

2 User(s) are reading this topic
0 members, 2 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