๐Ÿ“ปRestricted Radio Channel

Guide on how to add restricted radio channel

Shared.RestrictedChannels = {
    -- template to add channel
    [channel number: number] = { -- channel id
        type = string: 'job/gang',
        name = table: 'gang name/job name'
    }
    
    -- example 
    [1] = { -- channel id
        type = 'job', -- job/gang
        name = {"police", "ambulance"}
    },
    [420] = { -- channel id
        type = 'gang', -- job/gang
        name = {"ballas"}
    },

}

Last updated