For those that are using the AppImage on Linux, here are some steps to get this mod working.
1. Create a new directory to put everything
2. Download the Fransbot and unpack it to the created OpenRA Directory
Code: Select all
unzip ~/Downloads/ra-fransbots-release-20250330.zip -d ~/OpenRA
3. Download AppImage of OpenRA-RedAlert and Extract it (Downloaded from OpenRA website)
Code: Select all
mv ~/Downloads/OpenRA-Red-Alert-x86_64.AppImage ~/OpenRA
cd ~/OpenRA
./OpenRA-Red-Alert-x86_64.AppImage --appimage-extract
This will produce a folder `squashfs-root/` in the current directory
4. Create Two Scripts, One to enable one to disable fransbot
Enable (enable_fransbot.sh)
Code: Select all
#!/usr/bin/env bashi
OPEN_RA_DIR=~/OpenRA
MODRA="$OPEN_RA_DIR/squashfs-root/usr/lib/openra/mods/ra"
rsync -a "$OPEN_RA_DIR/fransbots/ON/mods/ra/" "$MODRA/"
echo "FransBots enabled."
Disable (disable_fransbot.sh)
Code: Select all
#!/usr/bin/env bashi
OPEN_RA_DIR=~/OpenRA
MODRA="$OPEN_RA_DIR/squashfs-root/usr/lib/openra/mods/ra"
rsync -a "$OPEN_RA_DIR/fransbots/OFF/mods/ra/" "$MODRA/"
echo "FransBots enabled."
Enable and Disable the mod by using the two scripts.
Then to run the game
Hope this helps anyone that was struggling getting this working on Linux
-Z