Configs

Config = {}
-- DISCORD : https://discord.gg/zcG9KQj3sa
-- STORE : https://store.devcore.cz/

Config.Locale = 'en' -- Set your locale here -  en/cs/sk/de/fr/es/it/pl
Config.UI = {
	Language = {
        defaultLanguage = "en",  -- Default language for the UI
        availableLanguages = {"en", "cs", "sk", "de", "fr", "es", "it", "pl"}  -- Supported languages
    }
}
Config.KickMessage = 'You have been kicked for attempting to abuse the banking system. If you think this is an error, please contact the server management.'

Config.OpenBanking = 'ox_target' -- ox_target: ox_target, okok_textui: okok textui, ox_lib: ox_lib textui, esx: esx textui, cd: cd draw text ui
Config.Notify = 'ox' -- okok: okok notify, ox_lib: ox notify, esx: esx notification, cd: cd notifications, mythic: mythic notifications, pnotify: pNotify

Config.debug = false

Config.TransactionLabels = {
    ['account_transfer'] = "Account Transfer to: ",
    ['account_transfer_2'] = "Transfer from Account: ",
    ['account_deposit'] = 'Deposit',
    ['account_withdraw'] = 'Withdrawal',
    ['savings_deposit'] = 'Transfer to Savings',
    ['savings_withdraw'] = 'Transfer from Savings',
    ['loan_transaction'] = 'Loan'
}

Config.Loans = {
    MaxActiveLoans = 1,
    MinAmount = 10000, -- Minimum loan amount
    MaxAmount = 100000, -- Maximum loan amount
    minTerm = 5, -- Minimum loan term in days
    maxTerm = 20, -- Maximum loan term in days
    InterestRate = 0.05, -- Interest rate for loans (5%)
    PaymentInterval = 1 * 24 * 60 * 60, -- 1 day (in seconds) for daily payments
    DefaultGracePeriod = 3, -- Grace period in days before next payment is due again if player can't pay
	MinPlaytime = 14, -- Minimum playtime in days before player can take a loan
}

Config.MoneyItem = 'cash' -- Item name for cash

Config.ATMProps = {
	`prop_atm_01`,
	`prop_atm_02`,
	`prop_atm_03`,
	`prop_fleeca_atm`,
	`v_5_b_atm1`,
	`v_5_b_atm2`,
	`fm_ltd_atm_sign_01`
}

Config.BankZones = {
	{ -- Legion Square
		pos = vec3(149.02, -1041.17, 29.37),
		h = 340.0,
		length = 0.8,
		width = 6.0,
		minZ = 28.37,
		maxZ = 31.07
	},

	{ -- Del Perro
		pos = vec3(-1212.92, -331.6, 37.79),
		h = 27.0,
		length = 0.8,
		width = 6.0,
		minZ = 36.79,
		maxZ = 39.49
	},

	{ -- Burton
		pos = vec3(-351.78, -50.36, 49.04),
		h = 341.0,
		length = 0.8,
		width = 6.0,
		minZ = 48.04,
		maxZ = 50.74
	},

	{ -- Hawick
		pos = vec3(313.37, -279.53, 54.17),
		h = 340.0,
		length = 0.8,
		width = 6.0,
		minZ = 53.17,
		maxZ = 55.87
	},

	{ -- Highway
		pos = vec3(-2961.91, 482.27, 15.7),
		h = 87.0,
		length = 0.8,
		width = 6.0,
		minZ = 14.7,
		maxZ = 17.4
	},

	{ -- Sandy Shores
		pos = vec3(1175.7, 2707.51, 38.09),
		h = 0.0,
		length = 0.8,
		width = 6.0,
		minZ = 37.09,
		maxZ = 39.79
	},

	{ -- Paleto Bay
		pos = vec3(-111.54, 6469.59, 31.62),
		h = 315.0,
		length = 0.8,
		width = 4.4,
		minZ = 30.62,
		maxZ = 33.12
	}
}


Config.Jobs = {
    ['ambulance'] = 'society_ambulance',
    ['police'] = 'society_police',
}

Last updated