Skip to content

Version of Fabric Loader that works with Age of Histroy 3 game

License

Notifications You must be signed in to change notification settings

MushroomMif/aoh3-fabric-loader

 
 

Repository files navigation

AOH3 Fabric Loader

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.

How to use it:

Warning

Fabric loader does not work with beta version of the game, it works only with the stable version

  1. Go to "Actions" page of this repository, open a last action and download its artifacts
  2. Unzip downloaded archive into the game directory
  3. Download an archive with required libraries and also unzip it to the game directory
  4. If you are using Windows:
    Create a start.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
  5. Open the created file, it will launch the game with the loader
  6. 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 configure fabric_launch_settings.json if needed. Enjoy!

How to develop a mod for it:

Have a look at Example AOH3 Fabric mod repository. It has a great instruction telling how to set up your mod's project.

About

Version of Fabric Loader that works with Age of Histroy 3 game

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 97.7%
  • Kotlin 2.3%