Skip to main content
Awoken Banking has two separate taxes in config/tax.lua, each with its own on/off switch: a player transaction tax taken from everyday banking as it happens, and a business tax billed on a scheduled tax day using income-tax brackets. To tax only businesses, leave enabled = false and set business.enabled = true - the two are independent.
Both taxes are off by default (enabled = false and business.enabled = false). Nothing is charged until you turn one on.

Player transaction tax

A percentage taken from each taxable player transaction the moment it happens.
config/tax.lua
Collection modes (mode):

Business tax

A scheduled tax on shared business accounts (jobs and gangs), billed on a fixed calendar tax day using marginal brackets like real income tax. Independent of the player tax; controlled by the business block.
config/tax.lua
config/tax.lua
Only the money in each band is taxed at that band’s rate. A business with 150,000 to tax under the settings above pays: first 50k free, next 50k at 20% = 10,000, final 50k at 40% = 20,000, for 30,000 total.

Running it manually