```luaConfig = {}-- Local variables for some calculationslocal seconds =1000local minutes = seconds *60local hours = minutes *60-- Edit this part of the config.lua for changes to take affect
-- Toggle Debug-Mode
Config.Debug =false
--Change this part if you want another society to get the money
Config.Society ='society_police'
-- Change this to change the time you want the tax to be send to the player
Config.TaxInterval =1* hours -- You can change the "hour" to "minutes" or "seconds" if you want and change the "1" to any time you want
-- Change this to increase / decrease the tax per vehicle
Config.TaxPerVehicle =300
Config.TaxBusiness =3
Config.TaxPerProp =700
Config.TaxPerHideout =600
-- People dont have to pay for these job vehicles
Config.WhitelistedJobs = {
'police',
'fib',
'ambulance'
}
-- Here you can set how the players money would affect his taxes
Config.BankTax = {
LowerClass = {
MoneyLimit =50000,
Multiplier =1
},
MiddleClass = {
MoneyLimit =500000,
Multiplier =2
},
HighClass = {
MoneyLimit =1500000,
Multiplier =3
},
}
-- Change this only if you know what youre doing
-- You can enable taxes for other scripts I made (for example for owning businesses)