Client Config

Defines the robbery alert and the progress bars used for interactions.

Complete Configuration Example

return {
    robberyAlert = function(coords)
        return
    end,
    
    progressBars = {
        powerCut = {
            duration = 5000,
            label = 'Cutting power...',
            useWhileDead = false,
            canCancel = true,
            disable = {
                car = true,
                move = true,
                combat = true,
                mouse = false
            },
            anim = {
                dict = 'anim@heists@prison_heiststation@cop_reactions',
                clip = 'cop_b_idle',
                flag = 1
            },
        },
        
        robLaundromat = {
            duration = 4000,
            label = 'Breaking into the washing machine...',
            useWhileDead = false,
            canCancel = true,
            disable = {
                car = true,
                move = true,
                combat = true,
                mouse = false
            },
            anim = {
                dict = 'veh@van@ds@enter_exit',
                clip = 'd_force_entry',
            },
        }
    },
}