Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Linux additions #213

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Linux_Automatic_Installer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash
echo "Welcome to zero's anno 1800 Linux installer! "
echo "What is your anno 1800 directory? (default = ~/.local/share/Steam/steamapps/common/Anno 1800/)"

directory=""
read -p "Enter directory or default: " directory

if [ $directory = "default" ]; then

directory="~/.local/share/Steam/steamapps/common/Anno 1800/"

else
read -p "Is this correct? $directory
Please enter yes or no:
" yn
case $yn in
[Yy]* ) cd $directory ;;
[Nn]* ) exit;;
esac
fi

cd ~/$directory
mkdir mods

cd ~/$directory/Bin/Win64
wget https://github.com/xforce/anno1800-mod-loader/releases/download/v0.9.4/loader.zip
unzip -o loader.zip
rm loader.zip

33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ No file size limit. No more repacking. Less likely to break after updates (in ge

This changes the games XML files using XPath, this makes it easy and possible to only have the changes in a mod that you absolutely need instead of handling megabytes of XML files.

# Installation
# Installation Windows

Short shitty video to show how easy it is to install the loader.

Expand All @@ -25,6 +25,37 @@ You probably also need the VS 2019 Redist https://aka.ms/vs/16/release/VC_redist

And that's basically it.

# Installation Linux


# Automatic

Download the Linux installer script.

Use the default path when using steam.

Enjoy!

> You have to install all mods seperately and not put them into any folders!

# Manually

Head over to the releases page and download the loader.zip from the latest release.

Unzip the contents to the location where Anno1800.exe is

> Steam Default Path is `/home/(user)/.local/share/Steam/steamapps/common/Anno 1800/Bin/Win64/`

You will be asked to overwrite python35.dll, just accept that.

Create a mods folder in the parent directory.

And Thats it!

> You have to install all mods seperately and not put them into any folders!

# Mod loading

Mods will always be loaded in alphabetical order.
Mods are either loaded from:

Expand Down