Banking Configuration (Locations & ATMs)

This page covers the configuration options for setting up bank locations, ATM models, interaction zones, and related animations in the Kartik-Banking system. You can use this section to modify bank coordinates, set custom ATM props, and configure target zones for player interaction.

Config = {}

Config.Debug = false

Config.BankLocations = {
    Coords = {
        {
            coords = vector3(149.05, -1041.3, 29.37),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 28.0, -- for qb-target
            maxZ = 35.5, -- for qb-target
        },
        {
            coords = vector3(313.32, -280.03, 54.17),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 52.0, -- for qb-target
            maxZ = 55.5, -- for qb-target
        },
        {
            coords = vector3(-1212.68, -331.83, 37.78),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 35.0, -- for qb-target
            maxZ = 40.5, -- for qb-target
        },
        {
            coords = vector3(-2961.67, 482.31, 15.7),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 12.0, -- for qb-target
            maxZ = 17.5, -- for qb-target
        },
        {
            coords = vector3(241.95, 225.16, 106.29),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 103.0, -- for qb-target
            maxZ = 108.5, -- for qb-target
        },
        {
            coords = vector3(1175.0, 2706.9, 38.09),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 36.0, -- for qb-target
            maxZ = 41.5, -- for qb-target
        },
        {
            coords = vector3(-112.95, 6470.05, 31.63),
            size = vec3(2, 2, 2),
            rotation = 0.0,
            minZ = 29.0, -- for qb-target
            maxZ = 34.5, -- for qb-target
        },
    },

    Blips = {
        name = "Bank",
        sprite = 108,
        color = 2,
        scale = 0.55,
    },
}

Config.ATM_Animation = { -- Anim when opening ATM
    dict = "anim@amb@prop_human_atm@interior@male@enter",
    name = "enter",
    flag = 49,
}

Config.ATM_Models = {
    "prop_atm_01",
    "prop_atm_02",
    "prop_atm_03",
    "prop_fleeca_atm",
}

Last updated