
A useless Vault economy implementation.
NoEconomy is a lightweight Vault economy provider that gives every player an infinite balance (Double.MAX_VALUE). It allows any plugin depending on Vault's economy API to function without actual money management – perfect for creative servers, private friend servers, or testing environments where you don't want to worry about configuring a real economy.
NoEconomy registers itself with Vault as the active economy provider. Whenever a plugin (like a shop, auction house, or quest plugin) checks a player's balance, NoEconomy returns Double.MAX_VALUE. All withdrawal and deposit requests are instantly marked as successful, but the player's balance never actually changes. This effectively makes all purchases, sell transactions, and economy-related actions always possible.
Double.MAX_VALUE – Players have more money than any plugin could ever ask for.plugins/ folder.NoEconomy does not require any configuration. It works out of the box.
(If you wish to change the fake balance value in the future, a config option may be added. Feel free to open an issue if you need this feature.)
NoEconomy is designed to be as compatible as possible. It has been tested with:
However, because NoEconomy simulates infinite money without actually changing balances, some plugins may behave unexpectedly if they:
If you encounter issues with a specific plugin, please open an issue and describe the problem.
Double.MAX_VALUE + 1 which becomes Infinity. While rare, this could cause errors in those plugins.NoEconomy uses Maven. To build the plugin yourself:
git clone https://github.com/cygbs/NoEconomy.git
cd NoEconomy
mvn clean package
The compiled jar will be in the target/ directory.
This project is licensed under the LGPLv2.1+ License – see the LICENSE file for details.
Contributions are welcome! If you have ideas for improvements or find a bug, please open an issue or submit a pull request.
NoEconomy – because sometimes you just want to skip the economy.