Clothing bug

Ok so my server is using illenium-appearance for my clothing ect. and i added a addon clothing pack but on males the /shirt command dont remove it it shows another jacket under the clothes. also having the same issues with female clothing showing shorts under clothing. im using qb-core framework

You have to find what shirt is just bare body

After you find that go into your script you are using that handles the command

/shirt

That script should have a Config file where you can change what clothing appears when you do /shirt, just replace the numbers accordingly to your bare body numbers and it should work.


I am not sure what script you use but it should look something like this


Example

Config.BareParts = {
    ["shirt"] = {
		male = 15, female = 587
	},
-- Other Comps
}

Lets say 15 is the one that shows a jacket, I would find the bare body clothing piece number and replace it with that

Config.BareParts = {
    ["shirt"] = {
		male = 11, female = 241 -- Example
	},
-- Other Comps
}

Let me know if this helps : )