Background

Economies

ModsEconomies
Economies

Economies

CurseForge
GameplayLibrary

A simple library to implements economies on server

Economy

A minimal, and simple api to apply economy to your server.

ALL CREDITS GOES TO Vault for the similar implementation to just make familiar everyone


Quick Start

Install and add the plugin to your dependencies on maven / gradle and then to implement it in code just do this.

package com.myplugin.coolplugin;

import com.notzerotwo.economy;

public class MyPlugin extends JavaPlugin {
    
    @Override
    protected void setup() {
        super.setup();
        EconomyManager.RegisterEconomy(new MyEconomy());
        getLogger().at(Level.FINE).log("Economy has been setup!");
    }

    @Override
    protected void shutdown() {
        super.shutdown();
        getLogger().at(Level.FINE).log("Economy is shutting down!");
    }
    
    public void OnMyEvent(PlayerConnectEvent ev) {
        Economy econ = EconomyManager.currentEconomy;
        
        if(econ == null)
            return;
        //
        econ.depositPlayer(ev.getPlayerRef(), 2500);
    }
}

Information

377
Downloads
Version
Economies-1.0.0.jar
Updated
Jan 14, 2026
Support
Early Access

Project Links

Help the community thrive by sharing your feedback and reporting issues on the official tracker.

Economies - Hytale Mod | Hytale Wiki