2026-03-11 21:01:04 +01:00
2026-03-11 08:15:35 +01:00
2026-03-11 21:00:39 +01:00
2026-03-10 19:58:17 +01:00
2026-03-11 21:01:04 +01:00
2026-03-10 19:58:17 +01:00
2026-03-10 19:58:17 +01:00
2026-03-10 21:11:32 +01:00
2026-03-11 19:59:53 +01:00
2026-03-11 20:21:14 +01:00

Axo McLCE ModLoader

Discord

Axo Minecraft Legacy Console Edition ModLoader is a ModLoader for the McLCE that adds mod compatibility!

Logo

Features

  • Support for:
  • Make mods using .dll files
  • Built-in autocompiler in the installer
  • AxoAPI in full development
  • You don't need to download a new installer every time there is an update. You will need to download new installer only when there are major changes. The installer uses our API to download the newest ModLoader builds!

Installation

You will need Visual Studio 2022 for autocompiler. Then clone repository of one of supported version of McLCE and in Visual Studio set Minecraft.Client as a startup project. After that get our ModLoader here! Then launch downloaded exe file and complete setup and you're done!

NOTE: Compilation part of installer opens cmd

AxoAPI

If you want to create mods for AxoLoader you can read under this section about mod creating using AxoAPI!

Current AxoAPI features:

  • Custom blocks with custom drop
  • Custom items
  • Food items
  • Custom swords, pickaxes, axes and shovels

WIP AxoAPI features:

  • Custom recipes
  • Custom entities
  • Custom block generation in the world
  • Custom block models

AxoAPI features that are in plans:

  • Custom dimensions
  • Custom World Gen
  • Custom armor
  • And many more!

Making Mods

Here I will provide examples of using AxoAPI.

Mod setup

Every Axo mod needs 3 files:

  • mod.dll
  • manifest.json (currently used as a base for later development)
  • textures:
    • items (only if you add items)
    • terrain (only if you add blocks)

Creating mod.dll

  1. Create blank c++ project in VS 2022. Configure the project for the dll export. Download AxoAPI.h from here and place it in the source files
  2. Create YourModName.cpp in the source files. This is the main code for your mod:
     #define AXO_MOD 
     #define MOD_ID "your_mod"
     #include "AxoAPI.h"
    
     extern "C" __declspec(dllexport)
     void ModEntry(AxoMod* /*mod*/, AxoAPITable* api) {
         AxoMod_SetAPI(api);
        // Here you register things like blocks, items, etc.
     }
    
     extern "C" __declspec(dllexport)
     void OnTick() {
        // Currently not used for anything.
     }
    
     extern "C" __declspec(dllexport)
     void OnShutdown() {
        // Method called on shutdown
     }
    

Adding new blocks

Registering new blocks in Axo is simple! All registrations go in the void ModEntry function. Here is an example of adding a block:

AxoBlockDef exampleBlock;
exampleBlock.dropItemName = "Example Item"; // "" = drop itself 
exampleBlock.dropCount = 1;
exampleBlock.iconName = L"example_block"; // From textures/terrain
exampleBlock.name = "Example Block";
exampleBlock.hardness = 3.0f;
exampleBlock.resistance = 5.0f;
exampleBlock.creativeTab = AxoTab_BuildingBlocks; // You can find AxoTab references in AxoAPI.h

if AxoAPI_RegisterBlock(&exampleBlock)
    AxoAPI_Log("Example Block DONE.");
else
    AxoAPI_Log("Example Block ERROR.");

And that's all you need to register a block! Pretty simple!

Custom item in Axo

Creating items in Axo is really simple! Here is an example of adding an item:

AxoItemDef exampleItem;
exampleItem.iconName = L"example_item"; // From textures/items
exampleItem.name = "Example Item";
exampleItem.maxStackSize = 16; // Stack Size

if (AxoAPI_RegisterItem(&exampleItem))
    AxoAPI_Log("Example Item DONE.");
else
    AxoAPI_Log("Example Item ERROR.");

Done! Pretty simple aswell!

Custom food in Axo

To create food in Axo you use the same method that is used for items but you add food flags!

AxoItemDef exampleFood;
exampleFood.iconName = L"example_food";
exampleFood.name = "Example Food";
exampleFood.maxStackSize = 16;
exampleFood.isEdible = true; // Declares if it is Edible
exampleFood.food.nutrition = 6; // Food nutrition 
exampleFood.food.saturation = AXO_SATURATION_GOOD; // Food saturation (you can find refrences in AxoAPI.h)
exampleFood.food.isMeat = true; // Declares if wolfs can eat it
exampleFood.food.canAlwaysEat = true; // Declares if you can eat it even with full hunger bar

if (AxoAPI_RegisterItem(&exampleFood))
    AxoAPI_Log("Example Food DONE.");
else
    AxoAPI_Log("Example Food ERROR.");

Done!

Custom swords in Axo

To create sword in Axo you use the same method that is used for items but you add sword flags!

AxoItemDef exampleSword;
exampleSword.iconName = L"example_sword";
exampleSword.name = "Example Sword";
exampleSword.attackDamage = 99; // Attack damage base: 1

if (AxoAPI_RegisterItem(&exampleSword))
    AxoAPI_Log("Example Sword DONE.");
else
    AxoAPI_Log("Example Sword ERROR.");

And done!

Custom pickaxes, axes and shovels in Axo

AxoItemDef examplePickaxe;
examplePickaxe.iconName = L"example_pickaxe";
examplePickaxe.name = "Example Pickaxe";
examplePickaxe.isPickaxe = true; // Available options are "isPickaxe, isAxe, isShovel"
examplePickaxe.miningSpeed = 9.0f; // Mining speed, base: 1.0f

if (AxoAPI_RegisterItem(&exampleSword))
    AxoAPI_Log("Example Pickaxe DONE.");
else
    AxoAPI_Log("Example Pickaxe ERROR.");

Logging in Axo

To log in Axo all you need to use is:

AxoAPI_Log("Example Log");

And done! Now it logs in debug console!

Adding textures

In the folder with manifest.json and mod.dll, you should have a textures folder with two subfolders: terrain and items. In the terrain folder you put block textures, and in the items folder you put item textures.

Exporting a finished mod

It is pretty simple! Just compress manifest.json, mod.dll, and the textures folder into a zip file and you're done! You can put it into the mods folder and it should work.

FAQ

  • Q: Was AI used to create Axo?
  • A: Yes, it was used for bug fixes, code optimization and to speed up its development. Every line of code is understandable to humans. If you're not happy about it, you don't have to use Axo Loader.
  • Q: My compilation takes a long time. Is that normal?
  • A: Yes, it's compiling the whole project so it can take a while. From my tests, it takes 2 to 5 minutes. And if it takes a very long time you can cancel compilation in installer and compile it in Visual Studio 2022.
  • Q: Is Axo malware?
  • A: No, it only modifies the game's code. You can see every file in the repository.

More about

I started working on it a bit later than everyone else so I'm a little behind but I believe I can catch up to other mod loaders and give players good experience! Also I know that this code could be better but I'm not the greatest at c++ and that's why there is CONTRIBUTING.md!

Authors

Description
No description provided
Readme MIT 437 KiB
Languages
C++ 73.9%
Python 26.1%