How to Add Blacklisted Clothing Items

How to Add Blacklisted Clothing Items

  • Navigate to the tgiann-clothing/configs/blacklist folder.

  • You will see two files inside: one for male and one for female characters.

  • When you open them, you'll find sample blacklisted items already added.


How to blacklist a clothing item

For example, if you want to blacklist pants with ID 261, add it like this under the pants_1 key:

["pants_1"] = {
    [261] = true,
}

When a clothing item is blacklisted:

  • It will still appear in the clothing menu with its number,

  • But when a player selects it, they will see a warning message saying the item is blacklisted, and it will not be displayed on the character.


Example of multiple blacklisted items

["pants_1"] = { 
    [301] = true,
    [302] = true,
    [303] = true,
    [304] = true,
    [305] = true,
    [306] = true,
},

All available clothing categories you can blacklist:

  • tshirt_1

  • torso_1

  • decals_1

  • arms_1

  • pants_1

  • shoes_1

  • mask_1

  • bproof_1

  • chain_1

  • helmet_1

  • glasses_1

  • watches_1

  • bracelets_1

  • bag_1

Last updated