Back to Mods
Economies

Economies

gameplayNotZer0Two

A simple library to implements economies on server

About Economies

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); } } For Request or issues

Go Checkout the Source Page and go to the issues tab asking for features / or any problem

Downloads
316
Created
Jan 14, 2026
Updated
Jan 14, 2026
Version
Early Access

Categories

GameplayLibrary

Download Mod

Download on CurseForge
Free download • 316 total downloads

Need a Server?

Run Economies on a dedicated Hytale server with easy mod management.

Get Hytale Hosting

Frequently Asked Questions

What is Economies?

A simple library to implements economies on server

How do I download Economies?

You can download Economies for free from CurseForge. Click the "Download on CurseForge" button on this page to go directly to the download page.

Who created Economies?

Economies was created by NotZer0Two. The mod has been downloaded 316 times.

Is Economies compatible with Hytale servers?

Economies is designed for Hytale and can be used on both single-player and multiplayer servers. Check the mod page on CurseForge for specific compatibility information.

How do I install Economies?

To install Economies: 1) Download the mod from CurseForge, 2) Place the file in your Hytale mods folder, 3) Restart the game. The mod should load automatically.