=== CoinBank Commands Overview ===

1. /function bank:deposit
- What it does:
  - Detects and remove a coin item from the player's inventory.
  - Right now this only works for the coppercoin do to base game limits
  - Conversion values:
    - Copper Coin (bwc:coppercoin) = 1 CoinPoint

2. /function bank:withdraw_copper
- What it does:
  - Withdraws 1 Copper Coin (bwc:coppercoin) if the player has at least 1 CoinPoint.
  - Reduces 1 CoinPoint from the player's balance when they withdraw.

3. /function bank:withdraw_silver
- What it does:
  - Withdraws 1 Silver Coin (bwc:silver_coin) if the player has at least 10 CoinPoints.
  - Reduces 10 CoinPoints from the player's balance when they withdraw.

4. /function bank:withdraw_gold
- What it does:
  - Withdraws 1 Gold Coin (bwc:gold_coin) if the player has at least 100 CoinPoints.
  - Reduces 100 CoinPoints from the player's balance when they withdraw.

5. /function bank:withdraw_diamond
- What it does:
  - Withdraws 1 Diamond Coin (bwc:diamond_coin) if the player has at least 1000 CoinPoints.
  - Reduces 1000 CoinPoints from the player's balance when they withdraw.

6. /function bank:withdraw_netherite
- What it does:
  - Withdraws 1 Netherite Coin (bwc:netherite_coin) if the player has at least 10000 CoinPoints.
  - Reduces 10000 CoinPoints from the player's balance when they withdraw.

=== Installation Instrution ===

1. Scoreboards
- Create these scoreboards
  - CoinPoints
  - temp

2. Place the commands from above into a command block that execuses the commands **as the player**
- examples for single command blocks
  - /execute as @p run function bank:deposit
  - /execute as @p run function bank:show_coins
  - /execute as @p run function bank:withdraw_copper
  - /execute as @p run function bank:withdraw_silver
  - /execute as @p run function bank:withdraw_gold
  - /execute as @p run function bank:withdraw_diamond
  - /execute as @p run function bank:withdraw_netherite

================================

PS: There is a Test function but it does nothing beyond print some debug info and deposit all coins with value 1 each since mc cant do basic math