HomeJavaModsEconix
Econix
ModsJava

Econix

by jespersen · on Modrinth

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 1.21–26.1.2 · Paper⬇ Download for 1.20.2–1.20.6 · Paper⬇ Download for 1.20.2–1.21.4 · Purpur⬇ Download for 1.20.2–1.21.4 · Spigot
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.
Econix — screenshot 1
Update for this plugin incoming!!

Econix - Lightweight Economy Provider

What is Econix

Econix is an economy provider to have a simple handling with multiple currencies and to address them with a simple developer api. Econix is very simple and easy to integrate as well as to use as an own plugin.

What does Econix offer


Permissions

Hooks

Commands

Developer API

You can import our plugin via Maven or Gradle

<version> is the latest version here on modrinth

Zugriff auf die API Instance

class Main : JavaPlugin() {

    private var econix: EconixAPI? = null

    override fun onEnable() {
        // Econix Hook
        if (server.pluginManager.getPlugin("Econix")?.isEnabled == true) {
            logger.info("Hooking into Econix")
            econix = Econix.getAPI()
        } else {
            logger.warning("No Econix version Found!")
            server.pluginManager.disablePlugin(this)
        }
    }

    fun getEconix(): EconixAPI? {
        return econix
    }
}
public class Main extends JavaPlugin {

    private EconixAPI econix;

    @Override
    public void onEnable() {
        // Hook into Econix API
        if (Bukkit.getServer().getPluginManager().getPlugin("Econix") != null && Bukkit.getServer().getPluginManager().getPlugin("Econix").isEnabled()) {
            getLogger().info("Hooking into Econix");
            econix = Econix.getAPI();
        } else {
            getLogger().warning("No Econix version Found!");
            Bukkit.getServer().getPluginManager().disablePlugin(this);
        }
    }

    public EconixAPI getEconix() {
        return econix;
    }
}
Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more