A modloader for PC DLLs for Audica.
This modloader works as a standalone DLL (winhttp.dll
). It get loaded by Audica when it starts up, and then loads mods from the Mods
directory (which it will create if it does not exist) and applies them to Audica.
- Download the latest files from the releases page
- Extract everything to the same directory as
Audica.exe
andGameAssembly.dll
. (Should be somewhere like C:/Program Files (x86)/Steam/steamapps/common/Audica) - Running the game once should create a
Mods
folder for you, which you can then place your mods in.
git clone https://github.com/Mettra/AudicaModLoader.git
cd AudicaModLoader
git submodule update --init --recursive
./build.bat
AudicaModLoader.sln
should be generated under the AudicaModLoader/build
folder.
- Building the
AudicaModDoorstop
Visual Studio
project will output awinhttp.dll
, which should be placed next toAudica.exe
andGameAssembly.dll
If you're looking for how to create a mod, go over to https://github.com/Mettra/SampleAudicaMod!