http://gbxforums.gearboxsoftware.com/sh ... hp?t=77897

![[22ndSAS] Server Admin [22ndSAS] Server Admin](./images/ranks/level6.gif)

Code: Select all
To disable the startup movies:
-----------------------------
Within WillowEngine.ini:
Find:
[FullScreenMovie]
StartupMovies=2K_logo
StartupMovies=Gearbox_logo
StartupMovies=NVidia
StartupMovies=Loading
SkippableMovies=2K_logo
SkippableMovies=Gearbox_logo
SkippableMovies=Attract
SkippableMovies=NVidia
and comment out lines like so:
[FullScreenMovie]
//StartupMovies=2K_logo
//StartupMovies=Gearbox_logo
//StartupMovies=NVidia
//StartupMovies=Loading
//SkippableMovies=2K_logo
//SkippableMovies=Gearbox_logo
//SkippableMovies=Attract
//SkippableMovies=NVidia
If that doesn't work, replace the // with ;
To adjust FOV (Field of View):
-----------------------------
Within WillowInput.ini:
Search for "WillowGame.WillowPlayerInput". Below the chunk of bindings, add the following:
Bindings=(Name="F10",Command="FOV 90",Control=False,Shift=False,Alt=False)
Bindings=(Name="F11",Command="FOV 110",Control=False,Shift=False,Alt=False)
You can change the keys (F10 and F11) to whatever you'd like, as well as the FOV values.
To disable mouse smoothing:
----------------------------
Within WillowInput.ini:
Search for "bEnableMouseSmoothing" and you should come across the following line:
bEnableMouseSmoothing=True
Change to FALSE. This tremendously improves the feel of the mouse when looking around in-game and navigating the UI.
To disable/adjust weapon view bob:
----------------------------------
Within WillowGame.ini:
Search for "bWeaponBob" and you should come across the following lines:
bWeaponBob=TRUE
Bob=0.005
They should be pretty self explanatory. I can confirm the Bob numerical adjustment does work.
To enable VSync:
-----------------
Within WillowEngine.ini:
Search for "UseVsync" and you should come across the following line:
UseVsync=False
Change to TRUE.
To disable voice chat:
---------------------
Within WillowEngine.ini:
Search for "bHasVoiceEnabled" and you should come across the following line:
bHasVoiceEnabled=True
Change to FALSE.
To enable console:
------------------
*NOTE: This currently doesn't work correctly, it outputs all commands as 'SAY' commands*
Within WillowInput.ini:
Search for "ConsoleKey" and you should come across the following line:
ConsoleKey=
Add 'Tilde' after the equal sign to enable the console (should look like ConsoleKey=Tilde)
Enable Drop Weapon Key:
-------------------------
Within WillowInput.ini:
Search for "WillowGame.WillowPlayerInput". Within that section, search for "ThrowWeapon". By default, it's bound to "Underscore" - I changed mine to V, so it looks like:
Bindings=(Name="V",Command="ThrowWeapon",Control=F alse,Shift=False,Alt=False)
To make zoom a toggle (courtesy of Miker):
--------------------------------------------------
Within WillowInput.ini:
Add the text below under [WillowGame.WillowPlayerInput]
Bindings=(Name="ZoomIn",Command="StartAltFire | setbind RightMouseButton ZoomOut",Control=False,Shift=False,Alt=False,LeftT rigger=False,RightTrigger=False,bIgnoreCtrl=False, bIgnoreShift=False,bIgnoreAlt=False)
Bindings=(Name="ZoomOut",Command="StopAltFire | setbind RightMouseButton ZoomIn",Control=False,Shift=False,Alt=False,LeftTr igger=False,RightTrigger=False,bIgnoreCtrl=False,b IgnoreShift=False,bIgnoreAlt=False)
Then, edit the preexisting RightMouseButton binding to reflect the change:
Bindings=(Name="RightMouseButton",Command="advance dbutton bAdvancedButtonAux5",Control=False,Shift=False,Alt =False,LeftTrigger= False,RightTrigger=False,bIgnoreCtrl=False,bIgnore Shift=False,bIgnoreAlt=False)
to
Bindings=(Name="RightMouseButton",Command="ZoomIn" ,Control=False,Shift=False,Alt=False,LeftTrigger= False,RightTrigger=False,bIgnoreCtrl=False,bIgnore Shift=False,bIgnoreAlt=False)
To enable scroll wheel in text boxes:
-----------------------------------
Within WillowInput.ini
Search for all instances of the following (there should only be two instances):
InputKeyName="MouseScrollUp",ModifierKeyFlags=42
InputKeyName="MouseScrollDown",ModifierKeyFlags=42
remove the ",ModifierKeyFlags=42" so they look like:
InputKeyName="MouseScrollUp"
InputKeyName="MouseScrollDown"