A NeoForge mod for Minecraft 1.21.1 that adds a complete currency system with coins, a personal bank, and a configurable shop.
Four tiers of coins with different values that can be picked up, deposited, and traded:
| Coin | Value | Description |
|---|---|---|
| Copper Coin | 1 | Basic currency unit |
| Silver Coin | 10 | Worth 10 copper coins |
| Gold Coin | 100 | Worth 100 copper coins |
| Platinum Coin | 1000 | Worth 1000 copper coins |
A secure block where you can store currency separately from your wallet.
A configurable shop block for buying and selling items.
@modid to filter by mod (e.g., @mekanism)| Command | Description |
|---|---|
| /currency | Check your current wallet balance |
| /currency pay <player> <amount> | Send currency to another player |
| /currency withdraw <amount> | Convert wallet balance to coins |
| Command | Description |
|---|---|
| /currency balance <player> | Check another player's balance |
| /currency add <player> <amount> | Add currency to a player |
| /currency remove <player> <amount> | Remove currency from a player |
| /currency set <player> <amount> | Set a player's balance to a specific amount |
┌─────────┬─────────┬─────────┐
│ Iron │ Gold │ Iron │
│ Ingot │ Ingot │ Ingot │
├─────────┼─────────┼─────────┤
│ Iron │ │ Iron │
│ Ingot │ Chest │ Ingot │
├─────────┼─────────┼─────────┤
│ Iron │ Iron │ Iron │
│ Ingot │ Ingot │ Ingot │
└─────────┴─────────┴─────────┘
┌─────────┬─────────┬─────────┐
│ │ │ │
│ Emerald │ Emerald │ Emerald │
├─────────┼─────────┼─────────┤
│ │ │ │
│ Planks │ Chest │ Planks │
├─────────┼─────────┼─────────┤
│ │ │ │
│ Planks │ Planks │ Planks │
└─────────┴─────────┴─────────┘
The shop is fully configurable via config/minecraftmoney-shop.toml:
# Sell price multiplier (0.5 = 50% of buy price)
sellPriceMultiplier = 0.5
# Shop items format: "modid:item_id,price,Display Name"
shopItems = [
"minecraft:diamond,500,Diamond",
"minecraft:netherite_ingot,2000,Netherite Ingot",
# ... more items
]
Add entries to the shopItems array:
shopItems = [
"minecraft:diamond,500,Diamond",
"mymod:custom_item,100,Custom Item"
]
An atm10-shop-template.toml file is on github with 350+ items from popular mods including:
Copy the contents to your shop config to use it.