https://github.com/bentoboxworld/bank
Allow your players to deposit and withdraw money from the island's bank! See island rankings!
https://github.com/bentoboxworld/bank
bentobox-addon economy
Last synced: 6 months ago
JSON representation
Allow your players to deposit and withdraw money from the island's bank! See island rankings!
- Host: GitHub
- URL: https://github.com/bentoboxworld/bank
- Owner: BentoBoxWorld
- License: epl-2.0
- Created: 2019-10-06T09:07:20.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-09T19:28:46.000Z (11 months ago)
- Last Synced: 2024-11-09T20:25:03.868Z (11 months ago)
- Topics: bentobox-addon, economy
- Language: Java
- Homepage:
- Size: 271 KB
- Stars: 2
- Watchers: 4
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bank
[](https://sonarcloud.io/dashboard?id=BentoBoxWorld_Bank)
[](https://sonarcloud.io/dashboard?id=BentoBoxWorld_Bank)
[](https://sonarcloud.io/dashboard?id=BentoBoxWorld_Bank)
[](https://sonarcloud.io/dashboard?id=BentoBoxWorld_Bank)
[](https://sonarcloud.io/dashboard?id=BentoBoxWorld_Bank)
[](https://ci.codemc.io/job/BentoBoxWorld/job/Bank/)
[](https://gitlocalize.com/repo/5451/whole_project?utm_source=badge)**Bank** provides an **island bank** to enable island members to share money.
Created and maintained by [tastybento](https://github.com/tastybento).
## Introduction
Each island has a bank account. Players can deposit or withdraw money from their regular economy accounts into the island account where it is pooled. The island owner can decide which rank of team member can access the account via the settings menu. There is a `baltop` command that players can use to see which island has the most, or least money.
### Features
* Save or spend money as an island team
* Compete to have the highest balance in the game
* See a full history of transactions on the account### Requirements
**Bank** requires an economy to be installed on the server that uses Vault. Ideally, the economy should be multi-world aware otherwise money may end up being shared between worlds and game modes.## Commands
### Player commandsThe default player command is `bank` and it can be changed in the config.yml. So you use the bank you do `/island bank` for example.
* `bank deposit ` - deposit money into the island bank
* `bank withdraw ` - withdraw money from the island bank
* `bank balance` - see your island bank balance
* `bank statement` - see a fancy statement of deposits/withdrawals, etc. on your island bank account### Admin commands
The default admin command is `bank` and it can be changed in the config.yml.
Admin commands make money by magic.
* `bank give ` - deposit money into the player's island bank
* `bank take ` - withdraw money from the player's island bank
* `bank set ` - set the player's island bank balance to an amount
* `bank balance ` - see a player's island bank balance
* `bank statement ` - see a fancy statement of deposits/withdrawals, etc. on the player's island bank account## Configuration
```
bank:
# BentoBox GameModes that can use Bank
game-modes:
- BSkyBlock
- AOneBlock
- AcidIsland
- SkyGrid
- CaveBlock
commands:
# User command
user: bank
# Admin command
admin: bank
```## Permissions
```
permissions:
'[gamemode].bank.user':
description: Player can use bank command
default: true
'[gamemode].bank.user.balance':
description: Player can use bank balance command
default: true
'[gamemode].bank.user.deposit':
description: Player can use the bank deposit command
default: true
'[gamemode].bank.user.withdraw':
description: Player can use bank withdraw command
default: true
'[gamemode].bank.user.statement':
description: Player can use the bank statement command
default: true
'[gamemode].bank.user.baltop':
description: Player can use bank baltop command
default: true
'[gamemode].bank.admin':
description: Player can use admin command
default: op
'[gamemode].bank.admin.balance':
description: Player can use admin balance command
default: op
'[gamemode].bank.admin.give':
description: Player can use the admin give command
default: op
'[gamemode].bank.admin.take':
description: Player can use admin take command
default: op
'[gamemode].bank.admin.statement':
description: Player can use the admin statement command
default: op
'[gamemode].bank.admin.set':
description: Player can use admin set command
default: op```
## Like this addon?
You can [sponsor](https://github.com/sponsors/tastybento) to get more addons like this and make this one better!