EconomyCraft

โญ โ€” (1 endorsements) ๐Ÿ“ฅ 328 downloads ๐Ÿ“Œ v1.0 ๐Ÿ“… 11/13/2025
๐ŸŸก Updated this year

By kirbodevv ยท datapack

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 11/13/2025 ๐Ÿ“… Created: 11/13/2025

๐Ÿ” Analysis

  • ๐Ÿ† #1254 of 2046 datapack mods in this game by downloads

๐Ÿ“‹ About This Mod

โœ… `/assets/items/cash_$your_value$.json`:
โœ… "model": {
โœ… "type":"minecraft:model",
โœ… "model": "sc_economycraft:item/cash_$your_value$"
โœ… `/assets/models/cash_$your_value$.json`
โœ… "parent": "minecraft:item/generated",

# ๐Ÿ’ฐ Economy Craft **A Datapack that adds a complete money system to your Minecraft world!** With **Economy Craft**, you can transfer money between players using physical currency or your bank account. ## Screenshots <img src="https://raw.githubusercontent.com/sectcloud/economy-craft/master/screenshots/items.png" alt="items" width="100%"/> <img src="https://raw.githubusercontent.com/sectcloud/economy-craft/master/screenshots/action_bar.png" alt="action_bar" width="100%"/> <img src="https://raw.githubusercontent.com/sectcloud/economy-craft/master/screenshots/success_send_money.png" alt="success_send_money" width="100%"/> <img src="https://raw.githubusercontent.com/sectcloud/economy-craft/master/screenshots/error_example.png" alt="error_example" width="100%"/> ## Using ### ๐Ÿ’ธ Sending Money To send money, just type: ```mcfunction /trigger ec.pay ``` and follow the instructions. ### ๐Ÿ’ต Withdraw and Deposit To withdraw money from your in-game bank account, use this command: ```mcfunction /trigger ec.withdraw set $amount$ ``` $amount$ can be any number โ€” the datapack will give you your money. For example, if you type `/trigger ec.withdraw set 19302`, youโ€™ll get 3ร—5000, 4ร—2000, 3ร—100, and 2ร—1. ___ You can also do the opposite and deposit your cash into your bank account. Just type: ```mcfunction /trigger ec.deposit ``` ## For Admins If you're an admin and want to install this datapack, simply place the zip archive into your worldโ€™s datapacks folder. You can modify player balances directly using the scoreboard: ```mcfunction /scoreboard players set $player$ ec.money $amount$ # Sets a player's balance /scoreboard players add @a ec.money $amount$ # Adds an amount of money to all players /scoreboard objectives setdisplay sidebar ec.money # Displays balances (visible to all players) ``` If you want to uninstall the datapack, run this command: ``` /function sc_economycraft:uninstall ``` Then delete the datapack archive file. ### โš™ Customization The datapack is fully customizable. You can change textures for existing banknote denominations โ€” or even add or remove denominations entirely. #### ๐Ÿท Changing the Currency Name You may also want to rename your currency โ€” and you can easily do that. Locate the file in your resource pack: ```file /assets/sc_economycraft/lang/en_us.json // And all languages you need ``` ```json "scec.money":"Money", "scec.moneyformat":"%s Coins", "item.scec.cash_1":"1 Coin", "item.scec.cash_10":"10 Coins", "item.scec.cash_50":"50 Coins", "item.scec.cash_100":"100 Coins", "item.scec.cash_200":"200 Coins", "item.scec.cash_500":"500 Coins", "item.scec.cash_1000":"1000 Coins", "item.scec.cash_5000":"5000 Coins", ``` #### ๐ŸŽจ Change Texture for present denominations Simply replace the texture files in your resource pack. They are located in: ``` /assets/sc_economycraft/textures/item/ ``` #### ๐Ÿ’ต Remove and add denominations Removing or adding denominations requires a bit more setup. Open the file: ``` /data/sc_economycraft/functions/settings.mcfunction ``` Find the following lines: ```mcfunction # Default banknote denominations # All value must be unique and in ascending order data modify storage sc_economycraft:banknotes values set value data modify storage sc_economycraft:banknotes length_minus_one set value 7 # Default timeout duration (in ticks) scoreboard players set timeout_duration ec.SETTINGS 600 ``` To **add** or **remove** denominations: 1. Modify the list inside `values set value `. - Each entry has the format `{v:<denomination>}`. - Example: to remove 5000 and add 2000, change it to ```mcfunction data modify storage sc_economycraft:banknotes values set value ``` 2. Update `length_minus_one` to match the number of denominations minus one. - In the example above, there are 8 denominations โ†’ set it to 7. ```mcfunction data modify storage sc_economycraft:banknotes length_minus_one set value 7 ``` #### Tipp If you add new denominations that donโ€™t exist in the default setup, youโ€™ll also need to create corresponding files in your resource pack: - `/assets/items/cash_$your_value$.json`: ```json { "model": { "type":"minecraft:model", "model": "sc_economycraft:item/cash_$your_value$" } } ``` - `/assets/models/cash_$your_value$.json` ```json { "parent": "minecraft:item/generated", "textures": { "layer0": "sc_economycraft:item/cash_$your_value$" } } ``` - `/assets/textures/cash_$your_value$.png` (This is the actual texture image for your new banknote.) - And also you need to make localization for your new denominations (see (#-change-curency-name`)) ## This Datapack Follows Conventions You can read them (https:

# ๐Ÿ’ฐ Economy Craft

A Datapack that adds a complete money system to your Minecraft world!

With Economy Craft, you can transfer money between players using physical currency or your bank account.

## Screenshots

items action_bar success_send_money error_example

### ๐Ÿ’ธ Sending Money

To send money, just type:

```mcfunction /trigger ec.pay ```

and follow the instructions.

### ๐Ÿ’ต Withdraw and Deposit

To withdraw money from your in-game bank account, use this command:

```mcfunction /trigger ec.withdraw set $amount$ ```

$amount$ can be any number โ€” the datapack will give you your money.

For example, if you type `/trigger ec.withdraw set 19302`, youโ€™ll get 3ร—5000, 4ร—2000, 3ร—100, and 2ร—1.

You can also do the opposite and deposit your cash into your bank account. Just type:

```mcfunction /trigger ec.deposit ```

## For Admins

If you're an admin and want to install this datapack, simply place the zip archive into your worldโ€™s datapacks folder.

You can modify player balances directly using the scoreboard:

```mcfunction /scoreboard players set $player$ ec.money $amount$ # Sets a player's balance /scoreboard players add @a ec.money $amount$ # Adds an amount of money to all players /scoreboard objectives setdisplay sidebar ec.money # Displays balances (visible to all players) ```

If you want to uninstall the datapack, run this command:

``` /function sc_economycraft:uninstall ```

Then delete the datapack archive file.

### โš™ Customization

The datapack is fully customizable. You can change textures for existing banknote denominations โ€” or even add or remove denominations entirely.

#### ๐Ÿท Changing the Currency Name

You may also want to rename your currency โ€” and you can easily do that.

Locate the file in your resource pack:

```file /assets/sc_economycraft/lang/en_us.json // And all languages you need ```

```json "scec.money":"Money", "scec.moneyformat":"%s Coins", "item.scec.cash_1":"1 Coin", "item.scec.cash_10":"10 Coins", "item.scec.cash_50":"50 Coins", "item.scec.cash_100":"100 Coins", "item.scec.cash_200":"200 Coins", "item.scec.cash_500":"500 Coins", "item.scec.cash_1000":"1000 Coins", "item.scec.cash_5000":"5000 Coins", ```

#### ๐ŸŽจ Change Texture for present denominations

Simply replace the texture files in your resource pack. They are located in:

``` /assets/sc_economycraft/textures/item/ ```

#### ๐Ÿ’ต Remove and add denominations

Removing or adding denominations requires a bit more setup. Open the file:

``` /data/sc_economycraft/functions/settings.mcfunction ```

Find the following lines:

```mcfunction # Default banknote denominations # All value must be unique and in ascending order data modify storage sc_economycraft:banknotes values set value [{v:1}, {v:10}, {v:50}, {v:100}, {v:200}, {v:500}, {v:1000}, {v:5000}] data modify storage sc_economycraft:banknotes length_minus_one set value 7

# Default timeout duration (in ticks) scoreboard players set timeout_duration ec. SETTINGS 600 ```

To add or remove denominations:

1. Modify the list inside `values set value [...]`. - Each entry has the format `{v:}`. - Example: to remove 5000 and add 2000, change it to ```mcfunction data modify storage sc_economycraft:banknotes values set value [{v:1}, {v:10}, {v:50}, {v:100}, {v:200}, {v:500}, {v:1000}, {v:2000}] ``` 2. Update `length_minus_one` to match the number of denominations minus one. - In the example above, there are 8 denominations โ†’ set it to 7. ```mcfunction data modify storage sc_economycraft:banknotes length_minus_one set value 7 ```

If you add new denominations that donโ€™t exist in the default setup, youโ€™ll also need to create corresponding files in your resource pack:

  • `/assets/items/cash_$your_value$.json`:
  • ```json
  • {
  • "model": {
  • "type":"minecraft:model",
  • "model": "sc_economycraft:item/cash_$your_value$"
  • }
  • }
  • ```
  • `/assets/models/cash_$your_value$.json`
  • ```json
  • {
  • "parent": "minecraft:item/generated",
  • "textures": {
  • "layer0": "sc_economycraft:item/cash_$your_value$"
  • }
  • }
  • ```
  • `/assets/textures/cash_$your_value$.png`
  • (This is the actual texture image for your new banknote.)
  • And also you need to make localization for your new denominations (see (#-change-curency-name`))

## This Datapack Follows Conventions

You can read them (https:

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

๐Ÿ“Š Mod Details

Game
Minecraft Data Packs
Author
kirbodevv
Version
1.0
Downloads
328
Endorsements
1
Category
datapack
Created
11/13/2025
Updated
11/13/2025
Game Versions
1.21.9, 1.21.10
Tags
economy, social, utility

๐Ÿ”ง How to Install Minecraft Data Packs Mods

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

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

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

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

โ“ Frequently Asked Questions

Which Minecraft Data Packs versions does EconomyCraft support?

The author lists 1.21.9, 1.21.10. Other versions may work but are untested by the author.

What is the latest version of EconomyCraft?

Version 1.0, published 2025-11-13 with 328 downloads recorded at the source.

Keep browsing โ€” more Minecraft Data Packs mods await

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