- Jan 12, 2020 Well there's that. Soon you will be able to skip to sanctuary instead of having to go through about 30 minutes of story. This way you have access to sanctuary and New DLC immediately after you.
- Wondering how to skip cutscenes in Borderlands 3 — or cut them off entirely? There's (kind of) a way to do it, but not everyone will be able to. by Jonathan Moore Let's face it: with more than a million guns to 'pew pew' and worlds to explore outside of Pandora, most of us just want to play Borderlands 3.
Borderlands 2 Pc Skip Cutscenes
bl2_movietoggle.sh
Aug 02, 2018 I've been watching Joltzdude139's streams and saw that he could skip cutscenes of TPS I know the owner of the mod is FromDarkHell but I have no idea where I can find the cutscene skip mod, Help would be appreciated Right. You don't need a mod.
#!/bin/bash |
# Borderlands 2 is pretty heavy with the cutscenes in Sanctuary. |
# Constantly. Playing. Character intros. |
# Fortunately we can toggle the cutscenes on or off... |
# --morb |
TEMP=$(mktemp) |
DIR='${HOME}/.steam/steam/SteamApps/common/Borderlands 2/steamassets/willowgame/config' |
errexit() { |
echo$@;rm $TEMP;exit 1 |
} |
dopatch() { |
cd'$DIR'&& patch $1<$TEMP2>&1> /dev/null || errexit 'patching failed.' |
rm $TEMP |
} |
[ !-d'$DIR' ] && errexit 'The Borderlands 2 directory doesn't exist. Point |
$DIR at the correct directory for your install.' |
cat >$TEMP<<_EOF_ |
--- defaultengine.ini |
+++ defaultengine.ini.nomovies |
@@ -1215,6 +1215,7 @@ |
DeviceName=Generic Software |
[FullScreenMovie] |
+bForceNoMovies=TRUE |
+StartupMovies=Aspyr |
+StartupMovies=2K_logo |
+StartupMovies=Gearbox_logo |
_EOF_ |
case$1in |
d|D) |
dopatch -f &&echo'Movies/Cutscenes disabled.' |
;; |
e|E) |
dopatch -fR &&echo'Movies/Cutscenes enabled.' |
;; |
*) |
printf'usage:n$0 dtt# disable cutscenesn$0 ett# enable them againn' |
errexit 'Please pass a valid argument.' |
;; |
esac |
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Jan 19th, 2014
Borderlands 2 Cutscene Skip Patch
Never
Borderlands 2 Skip Cutscenes Mod
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
- You can skip character and DLC intro cutscenes in the game with a simple modification to a configuration file. This can only effect cutscenes that are played from video files and not rendered in game like boss intros or other in-game events. This is not as brute force as bForceNoMovies=TRUE that has undesired effects. The configuration files are defaultly located at: My DocumentsMy GamesBorderlands 2WillowGameConfig
- Open WillowEngine.ini and place these lines under the [FullScreenMovie] section:
- SkippableMovies=TC_Scooter
- SkippableMovies=TC_Zed
- SkippableMovies=Orchid_Intro
- SkippableMovies=Sage_Intro
- SkippableMovies=Aster_Outro
- This is an example of what the [FullScreenMovie] section would look like with them added, in addition to commenting out StartUpMovies to speed up game launching:
- [FullScreenMovie]
- #StartupMovies=2K_logo
- #StartupMovies=NVidia
- SkippableMovies=2K_logo
- SkippableMovies=NVidia
- SkippableMovies=MegaIntro
- SkippableMovies=TC_Marcus
- SkippableMovies=TC_Tannis
- SkippableMovies=Iris_Intro
- SkippableMovies=Aster_Intro
- ConfirmSkipMovies=MegaIntro
- BinkSkipDelay=0.5
- BinkSkipTextY=0.8
- Also, if you don't want to accidentally skip a cutscene, add in a line of ConfirmSkipMovies= for whatever cutscene you want the 'Press Escape to skip' to appear at the top of the screen. Example of making Tina's DLC Outro to have a confirm skip message:
- ConfirmSkipMovies=Aster_Outro
- Similarly, to get rid of the confirm skip on the new game cutscene, comment out this line:
- (normal)
- #ConfirmSkipMovies=MegaIntro
- As far as comments go in the configuration files there is no actual defined character for comments. Any special character will make the game ignore that line as far as I know. A space or deleting lines may work as well, but commenting them out makes it easier to remember what you changed and to revert changes.
- Bonus info, these are the code names for the DLCs:
- Iris = Torgue DLC
- Aster = Tina DLC
Comments are closed.