> For the complete documentation index, see [llms.txt](https://corem.gitbook.io/corem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://corem.gitbook.io/corem/crm-appearance/blacklist-and-whitelist.md).

# Blacklist & Whitelist

{% hint style="danger" %}
Prior experience as a developer or basic programming skills are recommended to effectively navigate this section of the documentation.
{% endhint %}

### 1. Blacklist / Whitelist

```lua
-- Example of our blacklist/whitelist system.
-- This is just an example. You can customize the system for male or female and for each menu separately.

local crm_blacklist = {
    ['crm-charcreator'] = {},
}

crm_blacklist['crm-charcreator'] = {
    -- Blacklist/Whitelist for male.
    ['crm-male'] = {
        ['crm-peds'] = {
            {crm_models = {"mp_f_freemode_01"}}, -- Blacklist "mp_f_freemode_01" for everyone.
            {crm_models = {"a_m_y_business_01"}, crm_identifiers = {"WED33239"}}, -- Only show for player with Specific Identifier.
            {crm_models = {"a_m_y_business_01"}, crm_ace = {"admin"}}, -- Only show for player with Specific ace. 
            {crm_models = {"a_m_y_business_02"}, crm_jobs = { -- Only show for specific grades in specific jobs
                {crm_job = "police", crm_grades = {3, 4}}, 
            }},
            {crm_models = {"a_m_y_business_02"}, crm_gangs = { -- Only show for specific grades in specific gangs
                {crm_gang = "ballas", crm_grades = {1, 2}}, 
            }},
        }, -- Peds
        ['crm-hair'] = {}, -- Hair
        ['crm-facial'] = {}, -- Facial Hair
        ['crm-chest'] = {}, -- Chest Hair
        ['crm-eyebrows'] = {}, -- Eyebrows
        ['crm-makeup'] = {}, -- Makeup
        ['crm-blush'] = {}, -- Blush
        ['crm-lipstick'] = {}, -- Lipstick
        ['crm-clothing-0'] = {}, -- Heads
        ['crm-clothing-1'] = {}, -- Masks
        ['crm-clothing-3'] = {}, -- Hands
        ['crm-clothing-4'] = {}, -- Legs
        ['crm-clothing-5'] = {}, -- Bags and Parachutes
        ['crm-clothing-6'] = {}, -- Shoes
        ['crm-clothing-7'] = {}, -- Accessories
        ['crm-clothing-8'] = {}, -- Undershirts
        ['crm-clothing-9'] = {}, -- Body Armors
        ['crm-clothing-10'] = {}, -- Decals
        ['crm-clothing-11'] = {}, -- Tops/Torsos
        ['crm-accessories-0'] = {}, -- Hats
        ['crm-accessories-1'] = {}, -- Glasses
        ['crm-accessories-2'] = {}, -- Ears
        ['crm-accessories-6'] = {}, -- Watches
        ['crm-accessories-7'] = {}, -- Bracelets
    },
    -- Blacklist/Whitelist for female.
    ['crm-female'] = {
        ['crm-peds'] = {}, -- Peds
        ['crm-hair'] = {}, -- Hair
        ['crm-facial'] = {}, -- Facial Hair
        ['crm-chest'] = {}, -- Chest Hair
        ['crm-eyebrows'] = {}, -- Eyebrows
        ['crm-makeup'] = {}, -- Makeup
        ['crm-blush'] = {}, -- Blush
        ['crm-lipstick'] = {}, -- Lipstick
        ['crm-clothing-0'] = {}, -- Heads
        ['crm-clothing-1'] = {}, -- Masks
        ['crm-clothing-3'] = {}, -- Hands
        ['crm-clothing-4'] = {}, -- Legs
        ['crm-clothing-5'] = {}, -- Bags and Parachutes
        ['crm-clothing-6'] = {}, -- Shoes
        ['crm-clothing-7'] = {}, -- Accessories
        ['crm-clothing-8'] = {}, -- Undershirts
        ['crm-clothing-9'] = {}, -- Body Armors
        ['crm-clothing-10'] = {}, -- Decals
        ['crm-clothing-11'] = {
            {crm_styles = {4}, crm_textures = {2, 3}},
            {crm_styles = {2, 3}, crm_identifiers = {"WED332390"}},
            {crm_styles = {6, 7, 8}, crm_jobs = {
                {crm_job = "police", crm_grades = {3, 4}},
            }},
            {crm_styles = {6, 7, 8}, crm_gangs = {
                {crm_gang = "ballas", crm_grades = {1, 2}},
            }},
        }, -- Tops/Torsos
        ['crm-accessories-0'] = {}, -- Hats
        ['crm-accessories-1'] = {}, -- Glasses
        ['crm-accessories-2'] = {}, -- Ears
        ['crm-accessories-6'] = {}, -- Watches
        ['crm-accessories-7'] = {}, -- Bracelets        
    },
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://corem.gitbook.io/corem/crm-appearance/blacklist-and-whitelist.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
