Borderlands 2 Skip Cutscenes



  • 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.
  1. Borderlands 2 Pc Skip Cutscenes
  2. Borderlands 2 Cutscene Skip Patch
  3. Borderlands 2 Skip Cutscenes Mod

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
CutscenesBorderlands 2 Skip Cutscenes

Borderlands 2 Cutscene Skip Patch

Never

Borderlands 2 Skip Cutscenes Mod

Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. 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
  2. Open WillowEngine.ini and place these lines under the [FullScreenMovie] section:
  3. SkippableMovies=TC_Scooter
  4. SkippableMovies=TC_Zed
  5. SkippableMovies=Orchid_Intro
  6. SkippableMovies=Sage_Intro
  7. SkippableMovies=Aster_Outro
  8. 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:
  9. [FullScreenMovie]
  10. #StartupMovies=2K_logo
  11. #StartupMovies=NVidia
  12. SkippableMovies=2K_logo
  13. SkippableMovies=NVidia
  14. SkippableMovies=MegaIntro
  15. SkippableMovies=TC_Marcus
  16. SkippableMovies=TC_Tannis
  17. SkippableMovies=Iris_Intro
  18. SkippableMovies=Aster_Intro
  19. ConfirmSkipMovies=MegaIntro
  20. BinkSkipDelay=0.5
  21. BinkSkipTextY=0.8
  22. 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:
  23. ConfirmSkipMovies=Aster_Outro
  24. Similarly, to get rid of the confirm skip on the new game cutscene, comment out this line:
  25. (normal)
  26. #ConfirmSkipMovies=MegaIntro
  27. 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.
  28. Bonus info, these are the code names for the DLCs:
  29. Iris = Torgue DLC
  30. Aster = Tina DLC




Comments are closed.