From b4c84ff1a77051a0859cb7eb1addfdac6875df21 Mon Sep 17 00:00:00 2001 From: Zerrocool518 <76964130+Zerrocool518@users.noreply.github.com> Date: Mon, 3 Apr 2023 19:35:48 +0200 Subject: [PATCH 1/2] More informations on How to install mods I added a linux installation guide and even made a automatic installation script! --- README.md | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d8b520..fe579fa 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: From 35199c4b5481532c8fe1a2cf82c9aea0d0bfad77 Mon Sep 17 00:00:00 2001 From: Zerrocool518 <76964130+Zerrocool518@users.noreply.github.com> Date: Mon, 3 Apr 2023 19:38:21 +0200 Subject: [PATCH 2/2] An automatic Linux installer I forgot to add the auto installer from the other pull --- Linux_Automatic_Installer.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Linux_Automatic_Installer.sh diff --git a/Linux_Automatic_Installer.sh b/Linux_Automatic_Installer.sh new file mode 100644 index 0000000..beecc93 --- /dev/null +++ b/Linux_Automatic_Installer.sh @@ -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 +