McMoney
PLEASE GIVE ME IDEAS FOR THINGS TO ADD TO THIS
McMoney is like most economy systems made for minecraft but I feel is much easier to add to plugins. it has the general commands such as
/money and /pay (will explain the commands later on in this post). In the config you can set the name of the money and the starting amount of money.
You can give people interest if you allow it in the config. It works the same way as real interest works. The default is a 2.5% interest rate. If you don't know anything about interest this is how it works
A = P(1+R)^T
A = New amount
P = Current amount
R = Rate / 100
T = Time
If you have $5,287 with an interest rate of 2.5% after a year (in the plugin it would be every hour as if it was a year) it will be this
A = 5,287 * ((1 + .025)^1)
A = 5,419.16
Commands:
How to add to plugins:
Get the plugin with
MoneyAPI money = MoneyAPI.getInstance();
then use these
TODO: