This is a version of Fabric Loader, originally created for Minecraft modding, modified for working with Age of History 3 game. The loader is fully working now and looks stable, but the whole ecosystem around it is still in beta so expect some bugs and flaws while using it.
Warning
Fabric loader does not work with beta version of the game, it works only with the stable version
- Go to "Actions" page of this repository, open a last action and download its artifacts
- Unzip downloaded archive into the game directory
- Download an archive with required libraries and also unzip it to the game directory
- If you are using Windows:
Create astart.bat
file in the game directory and write"jre/bin/java.exe" -cp "./*" net.fabricmc.loader.impl.launch.knot.KnotClient
there
If you are using Mac:
- Download and install JRE 8
- Create a
start.sh
file in the game directory and write the following there
#!/bin/sh java -cp "./*" net.fabricmc.loader.impl.launch.knot.KnotClient
- Open the created file, it will launch the game with the loader
- Now you can put mods into
mods
directory (we recommend you to install AOH3 Fabric Api right away as almost all mods need this for working properly) and configurefabric_launch_settings.json
if needed. Enjoy!
Have a look at Example AOH3 Fabric mod repository. It has a great instruction telling how to set up your mod's project.