βš™οΈConfiguration

Here's a preview of all the config files of the script

config.lua is the main config file of the script

config.lua
Config = {}

-- Manually select the notification resource below --
Config.notificationList = {
    {name = "ESX",      alias = "ESXNOT",     selected = false},
    {name = "QBCore",   alias = "QBNOT",      selected = false},
    {name = "OX_Lib",   alias = "OXNOT",      selected = false},
    {name = "GTA",      alias = "DEFNOT",     selected = true},
}

-- Manually select the menu resource below --
Config.menuList = {
    {name = "OX_Lib",   alias = "OXMENU",      selected = true},
}

Config.framework = "AUTO" -- Default is AUTO. Only change this if the automatic detection does not work!
Config.inventory = "AUTO" -- Default is AUTO. Only change this if the automatic detection does not work!
Config.interact = "AUTO" -- Default is AUTO. Only change this if the automatic detection does not work!
Config.dispatch = "AUTO" -- Default is AUTO. Only change this if the automatic detection does not work!

-- Only change the values below if you know what you are doing! --
-- Only change the values below if you know what you are doing! --
-- Only change the values below if you know what you are doing! --
Config.functions = {}
Config.exportList = {}
Config.FWPH = nil

Config.frameworkList = {
    {resource = "es_extended",          alias = "ESX"},
    {resource = "qb-core",              alias = "QBCORE"},
    {resource = "ND_Core",              alias = "NDCORE"},
}

Config.inventoryList = {
    {resource = "es_extended",          alias = "ESXINV"},
    {resource = "qb-inventory",         alias = "QBINV"},
    {resource = "qs-inventory",         alias = "QSINV"},
    {resource = "ox_inventory",         alias = "OXINV"},
}

Config.interactList = {
    {resource = "ox_target",            alias = "OXT"},
    {resource = "qb-target",            alias = "QBT"},
    {resource = "interact",             alias = "IRT"},
}

Config.dispatchList = {
    {resource = "cd_dispatch",          alias = "CDDIS"},
    {resource = "qs-dispatch",          alias = "QSDIS"},
    {resource = "ps-dispatch",          alias = "PSDIS"},
    {resource = "linden_outlawalert",   alias = "LDDIS"},
    {resource = "core_dispatch",        alias = "CRDIS"},
}

Each supported resource has separate lua files. These can all be fully customized and are not encrypted. An example of this is the client and server file of QBCore.

Last updated