Kuro's Economy Docs
  • Kuro's Economy Mod
  • Basic Contents
    • Blocks
    • Items
  • Commands
  • PayDay System
    • PayDay
    • Jobs
  • Contracts
  • Taxes and Interest
  • Server Owners
    • Server Storage
Powered by GitBook
On this page
  • Taxes
  • Interest

Taxes and Interest

Taxes

Income can either be taxable or non-taxable. There are multiple tax classes, depending on your income. Here you can see which income sources are taxable:

Taxable
Not taxable

Job salary

Bank Contracts

Player contracts

Fixed payments

Shop Sales

Interest

In the economy_taxes.json, you can adjust how taxes work. You can either turn them on or off, adjust and create your own tax classes with min and max income restrictions or alter the tax percentages. Be aware that fixed payments are in the same config file, but not shown here. Only the part below the second square bracket is related to tax settings.

economy_taxes.json
{
  "useTaxBrackets": true,
  "brackets": [
    {
      "min": 0,
      "max": 4999,
      "rate": 0
    },
    {
      "min": 5000,
      "max": 10000,
      "rate": 10
    },
    {
      "min": 10001,
      "max": -1,
      "rate": 20
    }
  ]
}

Rate is always the percentage of the tax, applied to your total taxable income.

Make sure to not overlap min and max values between different classes, as this might cause issues.


Interest

Interest is a source of income that depends on your total account balance. The more money on your account, the higher your interest income will be.

You can adjust the interest behavior in the economy_paydayinterval.toml .

[interest]
	Interest = true
	#The interest percentage that the player will get on a payday
	"Interest Percentage" = 2.0
	#The minimum required balance for interest
	"Interest Minimum Balance" = 500.0
	"Interest Maximum" = 500000.0
PreviousContractsNextServer Storage

Last updated 3 days ago