Accessible code

Config = {
    locales = 'en',
    versionChecking = true,

    speedType = 'mp/h', -- km/h or mp/h
    speedMath = {
        ['km/h'] = 3.6,
        ['mp/h'] = 2.2
    },

    instantRemoveMoney = true,
    instantType = 'money', -- money or bank
    billingType = 'esx_billing', -- esx_billing, custom

    useDispatch = true,

    keys = {
        finish = 191,
        cancel = 194,
        moveUp = 85,
        moveDown = 48,
        moveRight = 175,
        moveLeft = 174,
        moveForward = 172,
        moveBack = 173,
        rotateRight = 313,
        rotateLeft = 312,
        increaseDistance = 83,
        reduceDistance = 84
    },

    blacklistedJobs = {
        'police'
    },

    whitelistedVehicles = {
        'police', 'police2'
    },


    props = {
        'prop_cctv_cam_01a',
        'prop_cctv_cam_01b',
        'prop_cctv_cam_05a'
    },

    blips = {
        enable = 'wl', -- 'wl' for wl jobs, 'all' for all players
        id = 184,
        scale = .8,
        color = 4,
        label = 'Radar'
    },

    commands = {
        {
            name = 'createradar',
            help = 'Create radar',
            permission = 'group.admin',
        },
        {
            name = 'editradar',
            help = 'Edit radar',
            permission = 'group.admin',
        }
    }
}

Last updated