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
- 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)
Here is how the JSON file would look like, for such configuration:
{
"male": {
"components": {
"masks": [
{
"drawable": 10
},
{
"drawable": 11
},
{
"drawable": 12
},
{
"drawable": 13
},
{
"drawable": 14,
"textures": [ 5, 7, 10, 11, 12, 13 ]
}
],
"upperBody": [],
"lowerBody": [],
"bags": [],
"shoes": [],
"scarfAndChains": [],
"shirts": [],
"bodyArmor": [],
"decals": [],
"jackets": [
{
"drawable": 10
},
{
"drawable": 11,
"textures": [ 1, 2, 3 ]
},
{
"drawable": 12
},
{
"drawable": 13
},
{
"drawable": 18
}
]
},
"props": {
"hats": [],
"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.
- 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
