Minecraft McMoney mod 2026 download
logo
minecraft mod McMoney

McMoney

Game Version: 1.8.1
Total Downloads: 98,875
Updated: Dec 15, 2015
Created: Feb 1, 2012
Download McMoneyDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
McMoney V1.2.1 release 12.42 KB Dec 15, 2015 1.8.1 52,870 download McMoney McMoney V1.2.1 releaseDownload
McMoney release 11.74 KB Dec 15, 2015 1.8.1 3,154 download McMoney McMoney releaseDownload
McMoney 1.1 release 11.51 KB Aug 12, 2013 CB 1.6.2-R0.1 23,672 download McMoney McMoney 1.1 releaseDownload
McMoney 1.1 release 11.34 KB Aug 7, 2013 CB 1.6.2-R0.1 2,189 download McMoney McMoney 1.1 releaseDownload
McMoney V1.0 release 17.44 KB Dec 16, 2012 CB 1.4.5-R0.2 8,476 download McMoney McMoney V1.0 releaseDownload
McMoney 1.2 release 15.54 KB Feb 15, 2012 CB 1.1-R4 5,528 download McMoney McMoney 1.2 releaseDownload
McMoney 1.1 release 15.48 KB Feb 14, 2012 CB 1.1-R4 1,722 download McMoney McMoney 1.1 releaseDownload
McMoney 1.0 release 13.91 KB Feb 1, 2012 CB 1.1-R3 1,264 download McMoney McMoney 1.0 releaseDownload

Description

Share this:

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:

  • /money [player] – show the amount of money you or another player has
  • /pay <player> <amount> – pay players
  • /mcadmin <set | add | remove> <player> <amount> – admin commands

How to add to plugins:

Get the plugin with
MoneyAPI money = MoneyAPI.getInstance();

then use these

  • addMoney(player name, amount); – gives the player money
  • removeMoney(player name, amount); – removes money from the player
  • getMoney(player name); – get amount player has
  • setMoney(player name, amount); – sets the amount of money a player has
  • hasMoney(player name); – returns if the player exists or not
  • createPlayerMoney(player name); – add that name to the money file with the starting amount of money
  • getMoneyString(amount); – gets the string of the money (ex. 153.7 duckets)

    example
    MoneyAPI money = MoneyAPI.getInstance();
    money.addMoney(player.getName(), 100);
    this will add 100 to the players money

TODO:

  • GREEN – Being worked on
  • RED – Not yet started
  • BLUE – In testing

Comments

Add a comment