• Hi-Rez Studios
  •  Language
    • English - United StatesEnglish
  • Games
    • SMITE
      • Home
      • Refer A Friend
      • My referrals
      • Gods
      • Items
      • Player Stats
      • Teams
      • Leaderboard
    • Tribes
      • Home
      • Refer A Friend
      • My Referrals
    • Global Agenda
  • Support
  • Store
FAQ • Login • Register

Board index » Tribes: Ascend - Official Forums » Tribes: Ascend - General Public Forums » Tribes: Ascend - Feedback & Constructive Discussion

All times are UTC - 5 hours [ DST ]


Forum rules


Please click here to view the forum rules

[tweak] Zoom sensitivity

Moderator: Cyberlink



Post new topic Reply to topic  Page 1 of 7
 [ 69 posts ]  Go to page 1, 2, 3, 4, 5 ... 7  Next
Previous topic | Next topic 
 [tweak] Zoom sensitivity 
Author Message
SkepticTA
User avatar


Joined: Mon Dec 06, 2010 7:41 pm
Posts: 3062
Post [tweak] Zoom sensitivity
After working out this ini tweak (thanks to RootBeerAlamode), I started thinking about zoom sensitivity and set out to make a tweak for that.

edit: updated to handle zoom levels based on tip from Ananasi

edit: added another version that resets zoom level to 1 on release (has less issues too)

This binding will change your mouse sensitivity while you are zoomed, with different amounts per zoom level. In the code here, I have it set to 8 at 1x, 12 at 2x and 20 normal; tweak these numbers to your liking. These numbers match the in-game slider, so you can figure out what values you want that way.

To install, open this file in notepad:
My Documents\My Games\Tribes Ascend\TribesGame\config\TribesInput.ini

Paste this code below everything else in the [Engine.PlayerInput] section, it will overwrite the previous bind for LeftShift. To disable just remove these lines.

With zoom reset
Code:
Bindings=(Name="GBA_MagnifyZoom",Command="MagnifyZoom | setsensitivity 8.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="GBA_DemagnifyZoom",Command="DemagnifyZoom | setsensitivity 12.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="LeftShift",Command="PressedZoom | setsensitivity 12.0 | OnRelease DemagnifyZoom | OnRelease ReleasedZoom | OnRelease setsensitivity 20.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)

Without zoom reset
Code:
Bindings=(Name="GBA_MagnifyZoom",Command="MagnifyZoom | setsensitivity 8.0 | setbind ZoomSens setsensitivity 8.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="GBA_DemagnifyZoom",Command="DemagnifyZoom | setsensitivity 12.0 | setbind ZoomSens setsensitivity 12.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="ZoomSens",Command="setsensitivity 12.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="LeftShift",Command="PressedZoom | ZoomSens | OnRelease ReleasedZoom | OnRelease setsensitivity 20.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)


Note: there are some issues with normal sensitivity starting out at a zoom amount when you first start the game or if you die while zoomed, but pressing the zoom button once will fix it. This will also cause your sensitivity to always change to these fixed values whenever you use zoom, no matter what you set the slider to.


Here is another version, this one toggles between levels:

Code:
Bindings=(Name="TWEAK_Zoom0",Command="ReleasedZoom | SetSensitivity 9.0 | OnRelease SetBind LeftShift TWEAK_Zoom1",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="TWEAK_Zoom1",Command="PressedZoom | DemagnifyZoom | SetSensitivity 6.0 | OnRelease SetBind LeftShift TWEAK_Zoom2",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="TWEAK_Zoom2",Command="MagnifyZoom | SetSensitivity 4.0 | OnRelease SetBind LeftShift TWEAK_Zoom0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="LeftShift",Command="TWEAK_Zoom1",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)


This turns leftshift into a step function zoom, pressing the button cycles between levels 0-2, with different sensitivity for each. No problems with it so far, but any weirdness can be fixed by tapping zoom key. I didn't care for the feel of tapping leftshift, so I tested swapping melee/zoom buttons and it felt pretty good.
_________________
Image
(AHK) T:A Physics Profiler

Last edited by SkepticTA on Fri Mar 02, 2012 4:58 am, edited 4 times in total.

Wed Feb 29, 2012 2:39 pm
Profile
SmoothP
User avatar


Joined: Fri Jul 29, 2011 3:28 am
Posts: 1583
Post Re: [tweak] Zoom sensitivity
Nice. In another game named TRIBES, I remember having 4 customizable, weapon independent zoom levels all with customizable sensitivities... I had mine set to 2.5x, 5x, 10x, 20x, with mouse sensitivities scaled to the inverse of zoom so every zoom level was exactly twice the last one and my aim always moved exactly the same amount across the screen.

It was quite nice. 8-) But I guess this will have to do in this game... :oops:
_________________
Give a man a pistol, and he'll play for a day... Teach a man to disc, and he'll stay devoted forever.
Loadouts 2.0 - Directional Jets - True Inheritance - Cosine Splash - Active Regen - Abolish Credits

Last edited by SmoothP on Wed Feb 29, 2012 3:03 pm, edited 1 time in total.

Wed Feb 29, 2012 3:01 pm
Profile
Ananasi
User avatar


Joined: Thu Sep 15, 2011 4:49 pm
Posts: 1001
Post Re: [tweak] Zoom sensitivity
I posted one a long time ago that also incorporates the zoom level functions so that you can have different sensitivities for each zoom level. But, since the forum search is a major fail, I can't see past the first page of my own posts. I'll see if I can't dig it up.


Wed Feb 29, 2012 3:02 pm
Profile
SkepticTA
User avatar


Joined: Mon Dec 06, 2010 7:41 pm
Posts: 3062
Post Re: [tweak] Zoom sensitivity
Ananasi wrote:
I posted one a long time ago that also incorporates the zoom level functions so that you can have different sensitivities for each zoom level. But, since the forum search is a major fail, I can't see past the first page of my own posts. I'll see if I can't dig it up.

That sounds nice, post it up if you can find it. Otherwise this works fine in T:A since we only get 2 zoom levels. I'm trying to make it change fov as well, but no luck yet.
_________________
Image
(AHK) T:A Physics Profiler


Wed Feb 29, 2012 3:09 pm
Profile
Ananasi
User avatar


Joined: Thu Sep 15, 2011 4:49 pm
Posts: 1001
Post Re: [tweak] Zoom sensitivity
Ah, here it is.


Wed Feb 29, 2012 3:17 pm
Profile
GoFFe


Joined: Fri Dec 16, 2011 7:37 pm
Posts: 215
Post Re: [tweak] Zoom sensitivity
Doesn't work for me!??? :(


Wed Feb 29, 2012 3:27 pm
Profile
GoFFe


Joined: Fri Dec 16, 2011 7:37 pm
Posts: 215
Post Re: [tweak] Zoom sensitivity
oooh because i use toggle zoom :(


Wed Feb 29, 2012 3:47 pm
Profile
Ananasi
User avatar


Joined: Thu Sep 15, 2011 4:49 pm
Posts: 1001
Post Re: [tweak] Zoom sensitivity
I think I have a keybind to do toggle zoom with sensitivity somewhere, I'll check when I get home.


Wed Feb 29, 2012 3:51 pm
Profile
Ananasi
User avatar


Joined: Thu Sep 15, 2011 4:49 pm
Posts: 1001
Post Re: [tweak] Zoom sensitivity
Maybe this, not at my gaming machine, cannot test:

Code:
Bindings=(Name="MyDoZoom",Command="PressedZoom | SetSensitivity 10 | SetBind ThumbMouseButton MyDoUnzoom",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="MyDoUnzoom",Command="PressedZoom | SetSensitivity 25 | SetBind ThumbMouseButton MyDoZoom",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="ThumbMouseButton",Command="MyDoZoom",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)

Last edited by Ananasi on Thu Mar 01, 2012 11:07 pm, edited 1 time in total.

Wed Feb 29, 2012 4:16 pm
Profile
SkepticTA
User avatar


Joined: Mon Dec 06, 2010 7:41 pm
Posts: 3062
Post Re: [tweak] Zoom sensitivity
Updated to handle zoom levels, thanks to help from Ananasi.
_________________
Image
(AHK) T:A Physics Profiler


Wed Feb 29, 2012 4:34 pm
Profile
Display posts from previous:  Sort by  
Post new topic Reply to topic  Page 1 of 7
 [ 69 posts ]  Go to page 1, 2, 3, 4, 5 ... 7  Next

Board index » Tribes: Ascend - Official Forums » Tribes: Ascend - General Public Forums » Tribes: Ascend - Feedback & Constructive Discussion

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © phpBB Group.
Phpbb Style Designed and Copyrighted by Vjacheslav Trushkin for Free Forums/DivisionCore.
Terms of Service and Privacy Policy

All content © Hi-Rez Studios.