Configuration

Comprehensive instructions on configuring files.

The CoreM configuration file allows you to choose which framework, inventory, notification, text UI, radial menu, and targeting system your server uses.

circle-info

All CoreM scripts will follow these settings automatically.

This file is located at:

crm-core/crm-config/crm-config.lua
--==============================================================
-- crm-core Configuration
-- This file allows you to select which resources
-- your server uses. Configure these based on your setup.
--==============================================================
crm_config = {}

-- Enable or disable debug for crm-core
crm_config.crm_debug = false

--==============================================================
-- FRAMEWORK SELECTION - Choose which framework crm-core should integrate with.
--
-- "auto" → Automatically detects your framework. (recommended)
-- "es_extended"
-- "qb-core"
-- "qbx_core"
--==============================================================
crm_config.crm_lib = "auto"


--==============================================================
-- INVENTORY SYSTEM - Select the inventory system your server is using.
--
-- "ox_inventory"
-- "esx_addoninventory"
-- "qb-inventory"
-- "codem-inventory"
-- "qs-inventory"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_inventory = "ox_inventory"


--==============================================================
-- NOTIFICATION SYSTEM - Choose how notifications are displayed to players.
--
-- "built-in" → Uses crm-core’s default notification system (recommended)
-- "ox_lib"
-- "crm-hud"
-- "qb-core"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_notify = "built-in"


--==============================================================
-- TEXT UI SYSTEM - Determines how prompts like “Press E to interact” are shown.
--
-- "built-in" → text UI included with crm-core (recommended)
-- "ox_lib"
-- "qb-core"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_textui = "built-in"


--==============================================================
-- RADIAL MENU SYSTEM - Select which radial menu crm-core should use.
--
-- "crm-radialmenu"
-- "ox_lib"
-- "qb-radialmenu"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_radial = "ox_lib"


--==============================================================
-- TARGETING SYSTEM - Select the target-eye menu system used for interactions.
--
-- "crm-target"
-- "ox_target"
-- "qb-target"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_target = "ox_target"

Last updated