This page walks you from download ➜ placement ➜ startup order ➜ framework setup for Onex Creation - the ultimate character creation and clothing system.
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.
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.
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.
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.
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-appearanceYou can safely remove the above scripts from your server. onex-creation handles their events and exports for seamless integration.
After starting your server, verify the installation:
/acreation command (requires admin permissions)After basic installation, set up clothing collections and preview images:
For servers with addon clothes:
/clothescallibrateall to calibrate all clothing items/clothesstudio or /shootclothesFor servers with only default clothes:
!ReadMe.md)onex-creation/previews/ folderSee Collections & Calibration and Preview Images for detailed guides.
Last updated 26 days ago