Borderlands 2 Skip Cutscenes

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. We don't really want to sit through cutscenes. No, we want to skip them, especially the long cinematic at the beginning. Well, this Borderlands 3 guide tells you how to skip the intro and cutscenes ... kind of.

While you might start with one Vault Hunter, you'll certainly want to try all of them since each presents wildly different abilities and playstyles. Thing is, there's the opening movie to sit through, then the one after you choose your VH.

This video is a tutorial for downloading, installing, and using the Borderlands 2 Unofficial Community Patch. This video also covers adding additional mods. 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. 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.

Skip

Cutscene Skip Bl2

Intro

While gorgeous and fun and raucous the first time 'round, watching it a second, third, or fourth time quickly becomes a slog, even if the theme song is a good one and the bar fight is pretty badass.

How to Skip Intro Cutscenes on PS4 and Xbox One

Borderlands 2 pc skip cutscenes

Unfortunately, you can't skip the intro cutsceneon console.

How to Skip the Intro and Splash Screens on PC

Of course, resourceful PC players have a solution for everything. Follow the steps below to get around the pesky opening cinematic:

  1. Go to your game files
  2. Look for Borderlands3/OakGames/Content/Movies
  3. Locate the file called Marcus_Intro
  4. Change the file name (it doesn't matter what it's changed to)
    • However, do not delete the file

If you want to skip the splash screens, too, change the 'LOGO' files found in the same folder. It won't net you any trophies or achievements, but it will help you get into the game even faster.

Borderlands 2 Skip Cutscenes Ps4

As always, thanks to the great Redditors that continuously figure all of this crazy stuff out. For more tips and trick for Borderlands 3, be sure to check out our growing guides page.

Borderlands 2 Modded Weapon Codes

bl2_movietoggle.sh
Borderlands 2 Skip Cutscenes
#!/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

Borderlands 2 Skip Cutscenes Mod

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment