For the complete documentation index, see llms.txt. This page is also available as Markdown.

Framework

rcore_housing supports ESX, QBCore, and QBox. The framework provides player identity, jobs, banking, and the inventory bridge.

๐Ÿ”Ž Auto Detection

Config.Framework = AUTO_DETECT

Auto detection checks the active resource list and picks the first match. Override with Framework.ESX, Framework.QBCORE, or Framework.QBOX only when detection is wrong.

๐Ÿงฉ Per-Framework Setup

Resource: es_extended

  • rcore_housing listens for esx:playerLoaded and esx:playerLogout.

  • Society / banking uses esx_society and esx_addonaccount by default - see society integration.

  • Make sure ESX is started before rcore_housing.

ensure es_extended
ensure rcore_housing_assets
ensure rcore_housing

Resource: qb-core

  • Listens for QBCore:Server:OnPlayerLoaded, QBCore:Server:OnPlayerUnload, QBCore:Server:OnJobUpdate.

  • Banking via qb-banking and qb-management - see society integration.

ensure qb-core
ensure rcore_housing_assets
ensure rcore_housing

Resource: qbx_core

  • Listens for the same events as QBCore (QBox preserves the QBCore:* event names by default).

  • Banking via qbx_management.

ensure qbx_core
ensure rcore_housing_assets
ensure rcore_housing

๐Ÿ›ก๏ธ Admin Groups

Per-framework admin groups are defined in integrations configuration:

Framework
Default groups

ESX

admin

QBCore

god, admin, mod, support

QBox

god, admin, mod, support

Admin groups receive every nil-permission action in the property creator - see Commands and Permissions.

๐Ÿ› ๏ธ Custom Event Names

If you've forked your framework and renamed events, override them in Config.Events - see integrations configuration.

Last updated