EconomySystem

โญ โ€” (7 endorsements) ๐Ÿ“ฅ 7,104 downloads ๐Ÿ“Œ v1.33 ๐Ÿ“… 8/29/2025
๐ŸŸก Updated this year

By ImDacro ยท bukkit

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 7/22/2026 ๐Ÿ“… Created: 8/29/2025

๐Ÿ” Analysis

  • ๐Ÿ‘ 0.1% endorsement rate
  • ๐Ÿ† #428 of 1560 bukkit mods in this game by downloads

๐Ÿ“‹ About This Mod

โœ… ๐Ÿ’ต Simple digital currency system (no items or banknotes)
โœ… โš™๏ธ Fully configurable currency format and starting balance
โœ… ๐Ÿงพ Transaction logging (payments, admin changes, etc.)
โœ… ๐Ÿ’ฌ Basic player commands: `/pay`, `/balance`, `/balancetop`
โœ… ๐Ÿ› ๏ธ Admin commands to set, add, or remove player balance
โœ… ๐ŸŒ Designed for performance and cross-version compatibility

# ๐Ÿ’ฐ EconomySystem **EconomySystem** is a lightweight, no-dependency economy plugin designed for Minecraft servers that need a simple and fast digital currency system. Whether you're running a Survival, CityBuild, or SkyBlock server, this plugin gives you essential economy features without unnecessary bloat. --- ## โœจ Features - ๐Ÿ’ต Simple digital currency system (no items or banknotes) - โš™๏ธ Fully configurable currency format and starting balance - ๐Ÿงพ Transaction logging (payments, admin changes, etc.) - ๐Ÿ’ฌ Basic player commands: `/pay`, `/balance`, `/balancetop` - ๐Ÿ› ๏ธ Admin commands to set, add, or remove player balance - ๐Ÿ“ฆ Local database support using **LiteSQL** (`.db` file) - ๐Ÿฌ Optional support for **MariaDB** if preferred - ๐Ÿ› ๏ธ No dependencies โ€“ **Vault is NOT required** - ๐ŸŒ Designed for performance and cross-version compatibility --- ## ๐Ÿง‘โ€๐Ÿ’ผ Commands & Permissions | Command | Description | Permission | |--------|-------------|------------| | `/balance ` | View your or another player's balance | `economysystem.command.balance` | | `/pay <player> <amount>` | Send money to another player | `economysystem.command.pay` | | `/balancetop` *(aliases: `/baltop`, `/topbalance`)* | Show top 10 richest players | `economysystem.command.balancetop` | | `/economyadmin <set/add/remove> <player> <amount>` *(alias: `/ecoa`)* | Admin command to modify balances | `economysystem.command.economyadmin` | --- ## ๐Ÿงฉ Dependencies None. EconomySystem runs fully standalone โ€“ no Vault, PlaceholderAPI, or other plugins required. --- ## โš™๏ธ Configuration The plugin provides a clean and powerful configuration system. Example: ```yaml economy: # The currency symbol currency-symbol: "$" # The currency name currency-name: "Dollar" # Amount of money players start with start-balance: 100.0 database: type: litesql # Options: litesql, mariadb mariadb: host: "localhost" port: 3306 database: "economy" username: "user" password: "" litesql: file: "economy.db" ``` โœ… By default, the plugin stores all player data in a local .db file using LiteSQL. ๐Ÿ” You can optionally configure MariaDB for better performance and scalability. --- ## ๐Ÿ“ฆ Compatibility EconomySystem is designed for broad compatibility and long-term stability across various Minecraft server types and versions. ### โœ… Supported Minecraft Versions - **1.8.x** to **1.20.x+** - Actively tested on latest Paper/Purpur builds ### โœ… Supported Server Software - **Paper** - **Spigot** - **Purpur** - **Bukkit** - **Any fork compatible with Bukkit API** ### ๐Ÿงฉ Plugin Dependencies - โŒ **None!** - No Vault, PlaceholderAPI, or other plugins required ### ๐Ÿ›ข๏ธ Database Support | Type | Description | Recommended For | |----------|---------------------------------------|------------------------------------| | `litesql` | Lightweight local `.db` file (default) | Small to medium servers | | `mariadb` | External SQL-based database | Larger networks or multi-server setups | > ๐Ÿ’ก You can switch between databases at any time via the `config.yml`. --- ### ๐Ÿงช Performance & Integration - Minimal memory and CPU usage - Asynchronous data handling - Fast load times, even with thousands of player records ---

# ๐Ÿ’ฐ EconomySystem

EconomySystem is a lightweight, no-dependency economy plugin designed for Minecraft servers that need a simple and fast digital currency system. Whether you're running a Survival, CityBuild, or SkyBlock server, this plugin gives you essential economy features without unnecessary bloat.

## โœจ Features

  • ๐Ÿ’ต Simple digital currency system (no items or banknotes)
  • โš™๏ธ Fully configurable currency format and starting balance
  • ๐Ÿงพ Transaction logging (payments, admin changes, etc.)
  • ๐Ÿ’ฌ Basic player commands: `/pay`, `/balance`, `/balancetop`
  • ๐Ÿ› ๏ธ Admin commands to set, add, or remove player balance
  • ๐Ÿ“ฆ Local database support using LiteSQL (`.db` file)
  • ๐Ÿฌ Optional support for MariaDB if preferred
  • ๐Ÿ› ๏ธ No dependencies โ€“ Vault is NOT required
  • ๐ŸŒ Designed for performance and cross-version compatibility

## ๐Ÿง‘โ€๐Ÿ’ผ Commands & Permissions

| Command | Description | Permission | |--------|-------------|------------| | `/balance ` | View your or another player's balance | `economysystem.command.balance` | | `/pay ` | Send money to another player | `economysystem.command.pay` | | `/balancetop` (aliases: `/baltop`, `/topbalance`) | Show top 10 richest players | `economysystem.command.balancetop` | | `/economyadmin ` (alias: `/ecoa`) | Admin command to modify balances | `economysystem.command.economyadmin` |

## ๐Ÿงฉ Dependencies

None. EconomySystem runs fully standalone โ€“ no Vault, PlaceholderAPI, or other plugins required.

## โš™๏ธ Configuration

The plugin provides a clean and powerful configuration system. Example:

```yaml economy: # The currency symbol currency-symbol: "$" # The currency name currency-name: "Dollar" # Amount of money players start with start-balance: 100. 0

database: type: litesql # Options: litesql, mariadb mariadb: host: "localhost" port: 3306 database: "economy" username: "user" password: "" litesql: file: "economy.db" ```

โœ… By default, the plugin stores all player data in a local .db file using LiteSQL.

๐Ÿ” You can optionally configure MariaDB for better performance and scalability.

## ๐Ÿ“ฆ Compatibility

EconomySystem is designed for broad compatibility and long-term stability across various Minecraft server types and versions.

### โœ… Supported Minecraft Versions - 1. 8.x to 1. 20.x+ - Actively tested on latest Paper/Purpur builds

### โœ… Supported Server Software - Paper - Spigot - Purpur - Bukkit - Any fork compatible with Bukkit API

### ๐Ÿงฉ Plugin Dependencies - โŒ None! - No Vault, PlaceholderAPI, or other plugins required

### ๐Ÿ›ข๏ธ Database Support | Type | Description | Recommended For | |----------|---------------------------------------|------------------------------------| | `litesql` | Lightweight local `.db` file (default) | Small to medium servers | | `mariadb` | External SQL-based database | Larger networks or multi-server setups |

> ๐Ÿ’ก You can switch between databases at any time via the `config.yml`.

### ๐Ÿงช Performance & Integration - Minimal memory and CPU usage - Asynchronous data handling - Fast load times, even with thousands of player records

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
ImDacro
Version
1.33
Downloads
7,104
Endorsements
7
Category
bukkit
Created
8/29/2025
Updated
7/22/2026
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
economy, utility

๐Ÿ”ง How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

๐Ÿ“– Full step-by-step install guide for Minecraft Plugins โ†’

Visit the official mod page for specific installation instructions for this mod.

๐ŸŽฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

โ“ Frequently Asked Questions

Which Minecraft Plugins versions does EconomySystem support?

The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of EconomySystem?

Version 1.33, published 2026-07-22 with 7,104 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More bukkit ๐Ÿ‘ค More by ImDacro ๐Ÿ”Ž Similar Mods ๐ŸŒ Best bukkit (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods