JustMoney is an economy plugin for Bukkit that adds just money, and not a ton of features that nobody ever uses. Just upload the plugin to your server, and everything just works out of the box.
Besides the very easy usage, the plugin comes with a handful of other useful features, namely:
Commands The
/money command can also be accessed via
/balance or
/bal.
The optional
<world> argument can only be used if
multi-world is enabled in the config. If the argument is left out, the player's current world is used instead.
/money [<world>] – Show your own balance
/money <player> [<world>] – Show the balance of another player
/money send <player> <amount> [<world>] – Send money to another player
/money set <amount> [<world>] – Set your own balance
/money set <player> <amount> [<world>] – Set the balance of another player
/money give <amount> [<world>] – Add money to your own account
/money give <player> <amount> [<world>] – Add money to the account of another player
/money take <amount> [<world>] – Withdraw money from your own account
/money take <player> <amount> [<world>] – Withdraw money from the account of another player
/money help – Show the command usage
Permissions These should be self-explanatory.
justmoney.*
justmoney.send(allowed by default)
justmoney.view.other
justmoney.set.*
justmoney.set.self
justmoney.set.other
Developer API I highly recommend using
Vault to hook into your server's economy, as it provides an API that almost all current economy plugins hook into. If for some reason, you still want to hook directly into JustMoney, it is published on CodeMC's maven repository:
Example Usage Any changes to an account's balance done via
BankAccount#setBalance(...),
BankAccount#withdraw(...) or
BankAccount#deposit(...) are automatically stored to the database or file system.