-
-
Notifications
You must be signed in to change notification settings - Fork 7
Home
Locate the game directory for Supreme Commander: Forged Alliance.
Default locations are:
%ProgramFiles(x86)%\Steam\SteamApps\common\supreme commander forged alliance\
%ProgramFiles(x86)%\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\
If using Steam, in your library you can:
Right-click on the game > Properties... > Local Files > Browse...
This is the recommended way for most players.
Make sure to remove any old versions of BrewLAN files first, download the
latest release, then merge
the contents of the /maps/
, /mods/
, and /gamedata/
folders with that of
the game directory's. If you have a fresh install, there may not be a mods
folder.
Alternatively, or if you're trying to use them with FAF, the /mods/
and /maps
folders can be installed into your documents folder. The /gamedata/
folder can
only be installed in the main directory. The documents folder location for the
English language version of the game is:
%UserProfile%\My Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\
This is only recommended for players who wish to receive experimental updates regularly and "know computers" to some degree.
- Install Git Bash or another Git client of your choice (skip if you already have).
- In Windows Explorer, copy the game directory's entire address.
- Open Git Bash (or your preferred Git client).
- Enter the following commands, one line at a time (in Git Bash, shift+insert
is the default shortcut for pasting):
cd "copypasted game directory address" git init git remote add origin https://github.com/The-Balthazar/BrewLAN.git git fetch origin git branch -u origin/master git pull
- The
cd
command requires the double quotes around the game directory address unless there are no spaces in the address. -
git fetch origin
has a tendency to take a few minutes. - If
git pull
complains about file conflicts, you will have to either deal with them in some way (perhaps rename/move them, which essentially backs them up) before retrying or rungit pull -f
(if you don't care what files you overwrite during the installation process).
Git Bash can be configured to automatically update BrewLAN whenever you launch Git Bash.
- In Git Bash, enter
touch ~/.bashrc
- In Windows Explorer, navigate to Git Bash's home directory (by default, you
can enter
%userprofile%
in the address bar; if you customized its home directory during the installation and forgot where it is, you can entercd ~; pwd
in Git Bash to see). - Open
.bashrc
with a text editor (you may have to check the "Hidden items" box in the "View" menu of Windows Explorer). - Add the following lines and save the file:
cd "copypasted game directory address" git pull
When you launch Git Bash, pay attention to the output so that you know whether
or not it updated successfully. Upon file conflicts, you'll have to deal with
them before retrying git pull
just like in the installation step.
(Of course, if you already know how to use a text editor in the terminal,
something like vim ~/.bashrc
would suffice for steps 1–3.)
[Show] BrewLAN