ServerEcoMod is a lightweight, Server-Side Only economy mod for Fabric 1.20.1. It is designed specifically for server administrators who want to introduce a flexible currency system and easy player-to-player transfers without forcing users to download any client-side mods!
Players using vanilla clients, Forge (via proxies), or even Bedrock Edition (via Geyser) can fully enjoy all the features of this mod.
/bank — Opens the graphical menu to select a currency and choose an online player for the transfer./balance — Displays your current balance for all available currencies in the chat./moneyadmin give <amount> — Grants the specified amount of the primary currency to your balance for testing or events.Upon the first server startup, a configuration file will be automatically generated at config/server_economy.json. You can modify it to match your server's theme:
{
"currencies": [
{
"id": "usd",
"displayName": "Dollar",
"symbol": "\$",
"itemMaterial": "minecraft:emerald"
},
{
"id": "coin",
"displayName": "Coin",
"symbol": "⛃",
"itemMaterial": "minecraft:gold_nugget"
}
]
}
id — Unique identifier for the currency in the system.displayName — The name displayed in chat and menus.symbol — The icon or currency sign.itemMaterial — The ID of the vanilla item used as the icon in the GUI..jar file into the mods folder of your Fabric 1.20.1 server.