So here is a comprehensive list for all the ini fixes.
As mentioned, there is no way to fix cutscenes through ini
The FOVs shown here are the default ones. Use FOV calculator to find out the required FOV values. Don't just add 50 to these values.
StormCamera.ini
Change these following values to fix in normal FOV and targeting FOV for most guns
Code: Select all
[StormGame.BSPlayerCamera]
DefaultCameraFOV=85
TargetingFOV=45
Optionally you can change these FOV values as well to fix spectating
Code: Select all
SpectatingCamAimingFOV=40
SpectatingCamRunningFOV=95
StormWeapon.ini
Change these values to fix special weapon zooms
Code: Select all
[StormGame.BSWeap_SniperRifle]
TargetingFOV=15
[StormGame.BSWeap_HeavyMachinegun]
TargetingFOV=54
[StormGame.BSWeap_HeavyMachinegunCopter]
TargetingFOV=60
StormPawn.ini
Change these values to fix various other things like run, slide, kick, whip, sniper cam
Code: Select all
[StormGame.BSSM_RoadieRun]
CameraFOV=100
[StormGame.BSSM_SniperShoot]
CameraFOV=130
[StormGame.BSSM_Slide]
CameraFOV=110
[StormGame.BSSM_ThumperGrenadeThrow]
CameraFOV=85
[StormGame.BSSM_BulletTime]
CameraFOV=85
StormInput.ini
To fix imprecise mouse behaviour find these lines
Code: Select all
[StormGame.BSPlayerInput]
Bindings=(Name="MouseX",Command="Count bXAxis | Axis aMouseX",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="MouseY",Command="Count bYAxis | Axis aMouseY",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
and change them to
Code: Select all
Bindings=(Name="MouseX",Command="Count bXAxis | Axis aMouseX Speed=0.4",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="MouseY",Command="Count bYAxis | Axis aMouseY Speed=1.0",Control=False,Shift=False,Alt=False,bIgnoreCtrl=False,bIgnoreShift=False,bIgnoreAlt=False)
You can change the speed values to whatever you are comfortable with.