Core
File Path: shared/config.core.lua
This file contains the core config of the computer script. Here you will set your framework and desired inventory.
Config File
Config["Core"] = {
DebugEnabled = true,
/**
Out of the box support for qb-core and ESX. Any other framework you will have to configure it yourself in client/editable and server/editable files.
It doesn't require any advanced knowledge, just look at what qb-core is getting as information and replace these functions with your core's functions.
Supported Frameworks:
* qb: qb-core, https://github.com/qbcore-framework/qb-core
* esx: es_extended, https://github.com/esx-framework/esx-legacy
* custom: You can configure it yourself to work with any other framework. If you need help, open a ticket in our discord.
**/
Framework = "qb",
/**
Supported Inventories:
* ox_inventory - https://github.com/overextended/ox_inventory
* qb-inventory - It will open a context menu with the GPUs instead of an inventory - https://github.com/overextended/ox_lib
* custom - You can configure it yourself to work with any other inventory. If you need help, open a ticket in our discord.
**/
Inventory = "ox_inventory",
-- ============================= --
--- RECOMENDED TO LEAVE AS TRUE ---
-- ============================= --
CheckForUpdates = true,
}
Last updated