⚙️Configuration

Configuration guide of the Banking System

Config.lua

STG = {}

STG.socialSupport = 1500 -- money
STG.socialSupportTime = 1440 * 60000 -- minute

STG.banks = {
    vector3(150.266, -1040.203, 29.374),
    vector3(-1212.980, -330.841, 37.787),
    vector3(-2962.582, 482.627, 15.703),
    vector3(-112.202, 6469.295, 31.626),
    vector3(314.187, -278.621, 54.170),
    vector3(-351.534, -49.529, 49.042),
    vector3(252.33, 218.11, 106.29),
    vector3(1175.064, 2706.643, 38.094),
} 

STG.blips = {
    sprite = 108,
    color = 2,
    scale = 0.9,
    label = "Bank",
}

STG.ATMProps = {
    'prop_atm_03',
    'prop_fleeca_atm',
    'prop_atm_01',
    'prop_atm_02'
}

STG.BankProps = {
    'v_corp_fleeca_display',
}

STG.Locale = {
    withdraw = "Withdraw successful!",
    deposit = "Deposit successful!",
    transfer = "Transfer successful!",
    offline = "Player offline!",
    noMoney = "You dont have enough money",
    deposit = "Deposit successful!",
    openbank = "Press ~INPUT_CONTEXT~ to open BANK",
    socialSupport = "Social Support claim successful!",
    time = "You have to wait to get the Social Support"}

Last updated