A replacement for qb-clothing and other clothing resources for qb-core
Discord: https://discord.gg/ZVJEkjUTkx
- Everything from standalone fivem-appearance
- Player outfits
- Rank based Clothing Rooms for Jobs / Gangs
- Tattoo's Support
- Hair Textures
- Polyzone Support
- Ped Menu command (/pedmenu) (Configurable)
- Reload Skin command (/reloadskin)
- Improved code quality
- Plastic Surgeons
- qb-target Support
- Skin migration support (qb-clothing / old fivem-appearance)
- Player specific outfit locations (Restricted via CitizenID)
- Makeup Secondary Color
- QBCore Theme
- Component & Props Blacklist support
- Limit Components & Props to certain Jobs / Gangs
- Persist Job / Gang Clothes on reconnects / logout
- Themes Support
- Delete / stop
qb-clothingfrom youre resources folder - Delete / stop any tattoo shop resources e.g.,
qb-tattooshopfrom your resources folder - Put
setr fivem-appearance:locale "en"in your server.cfg - Put
ensure fivem-appearancein your server.cfg - Delete the table
player_outfitsfrom your database - Apply the SQL file located here to your database to have the new
player_outfitstable created - If you want to configure qb-multicharacter, follow the corresponding guide for your version here
- Restart your server
- Follow the respective guide below based on your older version of clothing resource (qb-clothing / fivem-appearance)
Migration demo: https://streamable.com/ydxoqb
- Connect to your server
- Open up any of your saved character
- Run the following command:
/migrateskins qb-clothing- Wait until all the skins are migrated to the new format
- Quit the game
- Restart the server
- Delete
player_outfitstable from the database - Create the
player_outfitstable using the SQL here - Connect to your server
- Open up any of your saved character
- Run the following command:
/migrateskins fivem-appearance- Wait until all the skins are migrated to the new format
- Restart the server
You can now blacklist different clothes by adding them in a specific format to blacklist.json. The default file contains all the component names that you can choose to blacklist. For example if you want to blacklist following items:
Jackets: 10, 12, 13, 18 (All Textures)
Jackets: 11 (Texture: 1, 2, 3)
Masks: 10, 11, 12, 13 (All Textures)
Masks: 14 (Texture: 5, 7, 10, 12, 13)
Jackets: 25, 30, 35 (Accessible only by "police" job)
Hats: 41, 42, 45 (Accessible only by "ballas" gang)
Here is how the JSON file would look like, for such configuration:
{
"male": {
"components": {
"masks": [
{
"drawables": [ 10, 11, 12, 13 ]
},
{
"drawables": [14],
"textures": [ 5, 7, 10, 11, 12, 13 ]
}
],
"upperBody": [],
"lowerBody": [],
"bags": [],
"shoes": [],
"scarfAndChains": [],
"shirts": [],
"bodyArmor": [],
"decals": [],
"jackets": [
{
"drawables": [ 11 ],
"textures": [ 1, 2, 3 ]
},
{
"drawables": [ 10, 12, 13, 18 ]
},
{
"drawables": [ 25, 30, 35 ],
"jobs": [ "police" ]
}
]
},
"props": {
"hats": [
{
"drawables": [ 41, 42, 45 ],
"gangs": [ "ballas" ]
}
],
"glasses": [],
"ear": [],
"watches": [],
"bracelets": []
}
},
"female": {
"components": {
"masks": [],
"upperBody": [],
"lowerBody": [],
"bags": [],
"shoes": [],
"scarfAndChains": [],
"shirts": [],
"bodyArmor": [],
"decals": [],
"jackets": []
},
"props": {
"hats": [],
"glasses": [],
"ear": [],
"watches": [],
"bracelets": []
}
}
}You can separately blacklist male and female clothes. Just put them under the right section in the json and you should be good to go.
fivem-appearance comes with 2 themes, default and qb-core and qb-core is set as the default one.
Change currentTheme to the theme id. You can choose between qb-core and default.
- Copy an existing theme based on which you want to create a new one
- Change the
idto something unique - Change the parameters of the theme accordingly
You can customize every theme using the parameters defined in theme.json. Following table explains a little bit about what each parameter can do
| Parameter | Description |
|---|---|
| id | Unique ID for the theme |
| borderRadius | How round do you want the corners of the elements to be |
| fontColor | Main color of the text |
| fontColorHover | Color of the text on hover |
| fontColorSelected | Color of the text when it is selected |
| fontFamily | Font of the text |
| primaryBackground | Main background color for the elements |
| primaryBackgroundSelected | Main background color for the elements when they are selected |
| secondaryBackground | Secondary background color |
| scaleOnHover | Increase the size of the elements on hover |
| sectionFontWeight | Font weight for the section headings text |
| smoothBackgroundTransition | Enable to fade in to the background color during hover |
Note: After creating the custom theme, make sure to change currentTheme to the id of the new theme. You can ofcourse modify the existing themes as well if you want, but it is recommended to create your own so that you can switch between the defaults and the custom one whenever needed.
- Original Script: https://github.com/pedr0fontoura/fivem-appearance
- Tattoo's Support: https://github.com/franfdezmorales/fivem-appearance
- Last Maintained Fork for QB: https://github.com/mirrox1337/aj-fivem-appearance
