Command Palette
Search for a command to run...
INSTALLATION#
This page walks you from download ➜ placement ➜ startup order ➜ framework setup for Onex Creation - the ultimate character creation and clothing system.
ASSET DOWNLOAD#
- Go to the CFX Portal (Keymaster)
- Navigate to Granted Assets section
- Locate onex-creation in your asset list
- Click Download to get the latest version
- Extract the downloaded archive to a temporary location
ASSET DEPENDENCIES#
The following resources must be installed and started before onex-creation:
| Dependency | Description | Required |
|---|---|---|
| ox_lib | Overextended library for UI and utilities | Yes |
| onex-base | Onex framework core module | Yes |
| onex-interaction | Interaction system for shop zones | Yes |
| oxmysql | Database connector (for outfit storage) | Yes |
Missing dependencies will cause the script to fail on startup. Ensure all required dependencies are properly installed first.
DATABASE SETUP#
Import the SQL schema into your database to enable the outfit saving system:
SQL.sqlCREATE TABLE IF NOT EXISTS `player_outfits` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(46) DEFAULT NULL, `outfitname` varchar(50) NOT NULL DEFAULT '0', `description` varchar(50) DEFAULT NULL, `skin` longtext DEFAULT '{}', `code` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) );
This table stores player outfits with shareable codes. The code field enables outfit sharing between players.
UPDATE ARTIFACTS & GAME BUILD#
Ensure your server is running compatible versions:
| Component | Minimum Version |
|---|---|
| Server Artifacts | 7290+ |
| Game Build | 2944+ (for latest DLC clothes) |
To update your game build, add this to your server.cfg:
server.cfgset sv_enforceGameBuild 2944
Find all available game build versions in the FiveM Server Commands Documentation.
ASSET POSITIONING#
Place the resource folder in your server's resources directory, then configure your server.cfg:
server.cfg# Dependencies (start these first) ensure ox_lib ensure onex-base ensure onex-interaction # Main resource ensure onex-creation
The startup order is critical! Dependencies must load before onex-creation or the script will fail.
FRAMEWORK COMPATIBILITY#
onex-creation supports multiple frameworks with automatic detection:
| Framework | Support Level | Auto-Detect |
|---|---|---|
| QBCore | Full | Yes |
| ESX | Full | Yes |
| Standalone | Full | Yes |
| Custom | Template | Manual |
onex-creation provides full compatibility and replaces:
esx_skinskinchangerqb-clothingfivem-appearanceillenium-appearance
You can safely remove the above scripts from your server. onex-creation handles their events and exports for seamless integration.
VERIFY INSTALLATION#
After starting your server, verify the installation:
- Check server console for any errors
- Use the
/acreationcommand (requires admin permissions) - Visit any configured shop zone to test interaction
CALIBRATION & PREVIEWS#
After basic installation, set up clothing collections and preview images:
For servers with addon clothes:
- Run
/clothescallibrateallto calibrate all clothing items - Record preview images using
/clothesstudioor/shootclothes
For servers with only default clothes:
- Download pre-recorded previews (link in
!ReadMe.md) - Extract to
onex-creation/previews/folder
See Collections & Calibration and Preview Images for detailed guides.