forked from bencrow11/MultiEconomy
-
Notifications
You must be signed in to change notification settings - Fork 0
Config
Jean-Baptiste Lemée edited this page May 11, 2025
·
4 revisions
{
"allowOfflinePayments": true,
"defaultCurrency": "dollar",
"currencies": [
{
"name": "dollar",
"singular": "dollar",
"plural": "dollars",
"startBalance": 100.0,
"allowPayments": true
}
]
}
allowOfflinePayments: If you want players to be able to /pay players who aren't online, set this to true, otherwise set to false.
defaultCurrency: The default currency is the currency you want to be able to use in /pay, /bal and /baltop by default. This string must match the name field in an item in the currencies list.
currencies: This list is where you specify all the different currencies you want to have. Each currency needs the following:
- name: The name of the currency to be used in commands.
-
singular: The name of a single value of the currency. Will be used when displaying a value of
1. -
plural: The name of a plural value of the currency. Will be used when displaying a value of
>1. - startBalance: The amount you want players to start with.
-
allowPayments: If you want players to be able to use the currency in /pay, set to
true. Otherwise, set tofalse.