Page cover image

🗃️Full config preview

A full preview of the config file of the script.

Config = {}
Config.Active = false --Don't touch!

Config.Blackout = {
    ["airraid"] = {
        affectVehicles = false,
        soundEffect = true,
        soundName = 'lumio_airraid',
        soundVolume = 10.0,
        pattern = { 250, 150, 100, 100, 50, 50, 100, 150, 50, 50, 100 }
    },
    ["main"] = {
        affectVehicles = false,
        soundEffect = true,
        soundName = 'lumio_blackout',
        soundVolume = 10.0,
        pattern = { 250, 150, 100, 100, 50, 50, 100, 150, 50, 50, 100 }
    },
    ["emp"] = {
        affectVehicles = true,
        soundEffect = true,
        soundName = 'lumio_emp',
        soundVolume = 1.0,
        pattern = { 350, 350, 200, 200, 200, 200, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 900, 1900, 1000, 250, 100, 200, 1600, 250, 1000, 250, 250 }
    }
}

if GetResourceState('qb-core') == 'missing' then
    print('^1[MISSING] - qb-core framework not found.^7')
end

exports('IsBlackoutActive', function()
    return Config.Active
end)

--exports['lumio-blackout']:IsBlackoutActive()

Last updated