Savs Common Economy
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
🖼️ Gallery (1 images)
🔍 Analysis
- 👍 0.3% endorsement rate
- 🏆 #6 of 31 economy mods in this game by downloads
📋 About This Mod
# Savs Common Economy A comprehensive, **server-side only** economy mod for Minecraft 26.1 (Fabric), designed for SMP servers and multi-server networks. It provides a robust economy system with support for JSON, SQLite, MySQL, and PostgreSQL storage, offline player support, leaderboards, physical bank notes, player chest shops, and cross-server network synchronization. No client installation required. ## Core Features * **Server-Side Only**: No client modifications needed. Works perfectly for vanilla clients joining your Fabric server. * **Database Support**: Start simple with JSON (default), or scale up to SQLite, MySQL, or PostgreSQL for high-traffic environments. * **Redis Network Sync**: Built-in support for Redis Pub/Sub. Synchronize balances and transaction notifications across proxy setups and multi-server networks. * **Common Economy API**: Full support for the (https://github.com/Patbox/common-economy-api), integrating with Universal Shops, Mob Money, and other compliant economy mods. * **Offline Transactions**: Perform seamless administrative actions and payments to players even when they are offline. * **Chest Shops**: Player shops. Create buy and sell chest shops using vanilla signs. * **Buy & Sell System**: Quickly configure official server prices and empower your players to directly trade with the server using `/buy` and `/sell` commands. (Customizable via `worth.json`). * **Bank Notes**: Players can withdraw their digital balance into physical vanilla paper items to trade or stash away. * **Transaction Logging**: Searchable in-game transaction ledger for server admins (`/ecolog`). * **Vanilla Permissions Setup**: Easily configure command access levels using the `permissions.json` config using vanilla OP clearance levels. ## Commands ### Player Commands * `/bal` or `/balance`: Check your own balance. * `/bal <player>`: Check another player's balance. * `/pay <player> <amount>`: Pay an amount to another player. * `/baltop` or `/balancetop`: View the richest players on the server. * `/withdraw <amount>`: Withdraw money as a physical bank note. * `/worth`: Check the value of the item in your hand. * `/worth all`: Check the value of all items in your inventory matching the one in your hand. * `/worth list`: View an organized, colored table of all server buy and sell prices. * `/worth <item>`: Check the value of a specific item. * `/buy <item> `: Purchase items directly from the server. * `/sell`: Sell the item stack currently in your hand. * `/sell all`: Sell all identical items in your inventory. ### Shop Commands * `/shop create sell <price>`: Create a selling shop (sells items TO players). * `/shop create buy <price>`: Create a buying shop (buys items FROM players). * `/shop remove`: Enter remove-mode to delete a shop by clicking on its sign. * `/shop info`: Display information about the shop you are looking at. * `/shop list`: List all active shops you own. ### Admin Commands (Level 2+ / Configurable) * `/givemoney <player> <amount>`: Add money to a player's account. * `/takemoney <player> <amount>`: Remove money from a player's account. * `/setmoney <player> <amount>`: Set a player's balance to a specific amount. * `/resetmoney <player>`: Reset a player's balance to the default starting value. * `/shop admin`: Toggle Admin Shop creation (infinite stock/funds). * `/ecolog <target> <time> <unit> `: Search transaction logs (e.g., `/ecolog * 1 h`). --- ## Configuration Guide The main configuration file is automatically created at `config/savs-common-economy/config.json`. From here, you can change the default starting balances, currency symbols, and database details. ```json { "defaultBalance": 1000.0, "currencySymbol": "$", "symbolBeforeAmount": true, "enableSellCommands": false, "enableChestShops": true, "storage": { "type": "JSON", "host": "localhost", "port": 3306, "database": "savs_economy", "user": "root", "password": "password", "tablePrefix": "savs_eco_", "poolSize": 10, "connectionTimeout": 30000, "idleTimeout": 600000 }, "redis": { "enabled": false, "host": "localhost", "port": 6379, "password": "", "channel": "savs-economy-updates", "debugLogging": false, "timeout_ms": 5000, "client_name": "Savs-Economy-Node" }, "apiNotificationMode": "ACTION_BAR", "commandNotificationMode": "CHAT" } ``` ### Config Settings Explained #### General * `defaultBalance`: How much money new players start with when they first join. * `currencySymbol`: The symbol shown next to money amounts (e.g. "$", "€", "Coins"). * `symbolBeforeAmount`: If `true`, output shows `$100`. If `false`, output shows `100$`. * `enableSellCommands`: Turns the `/worth`, `/buy`, and `/sell` server market on or off. * `enableChestShops`: Turns the player chest shop sign system on or off. #### Storage Options Controls how
# Savs Common Economy
A comprehensive, server-side only economy mod for Minecraft 26. 1 (Fabric), designed for SMP servers and multi-server networks. It provides a robust economy system with support for JSON, SQLite, MySQL, and PostgreSQL storage, offline player support, leaderboards, physical bank notes, player chest shops, and cross-server network synchronization. No client installation required.
## Core Features
Server-Side Only: No client modifications needed. Works perfectly for vanilla clients joining your Fabric server. Database Support: Start simple with JSON (default), or scale up to SQLite, MySQL, or PostgreSQL for high-traffic environments. Redis Network Sync: Built-in support for Redis Pub/Sub. Synchronize balances and transaction notifications across proxy setups and multi-server networks. Common Economy API: Full support for the (https://github.com/Patbox/common-economy-api), integrating with Universal Shops, Mob Money, and other compliant economy mods. Offline Transactions: Perform seamless administrative actions and payments to players even when they are offline. Chest Shops: Player shops. Create buy and sell chest shops using vanilla signs. Buy & Sell System: Quickly configure official server prices and empower your players to directly trade with the server using `/buy` and `/sell` commands. (Customizable via `worth.json`). Bank Notes: Players can withdraw their digital balance into physical vanilla paper items to trade or stash away. Transaction Logging: Searchable in-game transaction ledger for server admins (`/ecolog`). Vanilla Permissions Setup: Easily configure command access levels using the `permissions.json` config using vanilla OP clearance levels.
## Commands
### Player Commands
`/bal` or `/balance`: Check your own balance.
`/bal
### Shop Commands
`/shop create sell
### Admin Commands (Level 2+ / Configurable)
`/givemoney
## Configuration Guide
The main configuration file is automatically created at `config/savs-common-economy/config.json`. From here, you can change the default starting balances, currency symbols, and database details.
```json { "defaultBalance": 1000. 0, "currencySymbol": "$", "symbolBeforeAmount": true, "enableSellCommands": false, "enableChestShops": true, "storage": { "type": "JSON", "host": "localhost", "port": 3306, "database": "savs_economy", "user": "root", "password": "password", "tablePrefix": "savs_eco_", "poolSize": 10, "connectionTimeout": 30000, "idleTimeout": 600000 }, "redis": { "enabled": false, "host": "localhost", "port": 6379, "password": "", "channel": "savs-economy-updates", "debugLogging": false, "timeout_ms": 5000, "client_name": "Savs-Economy-Node" }, "apiNotificationMode": "ACTION_BAR", "commandNotificationMode": "CHAT" } ```
### Config Settings Explained
#### General `defaultBalance`: How much money new players start with when they first join. `currencySymbol`: The symbol shown next to money amounts (e.g. "$", "€", "Coins"). `symbolBeforeAmount`: If `true`, output shows `$100`. If `false`, output shows `100$`. `enableSellCommands`: Turns the `/worth`, `/buy`, and `/sell` server market on or off. * `enableChestShops`: Turns the player chest shop sign system on or off.
#### Storage Options Controls how
📊 Mod Details
- Game
- Minecraft Mods
- Author
- xSaVageAU
- Version
- 1.7.0-26.2
- Downloads
- 3,857
- Endorsements
- 12
- Category
- economy
- Created
- 11/20/2025
- Updated
- 8/17/2026
- Game Versions
- 26.2
- Tags
- economy, management, utility
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Savs Common Economy support?
The author lists 26.2. Other versions may work but are untested by the author.
What is the latest version of Savs Common Economy?
Version 1.7.0-26.2, published 2026-08-17 with 3,857 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await
