> For the complete documentation index, see [llms.txt](https://kierandev.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kierandev.gitbook.io/documentation/tmc-resources/criminal-hints/config-options.md).

# Config Options

## Hints Ped

```lua
Config.HintsPed = {
    -- Hints Ped Blip Settings
    BlipSettings = {
        enabled = true,
        sprite = 280,  
        colour = 2,    
        size = 0.8,
        label = "Hints Ped"
    },
    -- Ped Configuration
    PedSettings = {
        model = "ig_lestercrest",
        coords = vector4(1275.4871, -1710.689, 54.77143, 104.29986),
        scenario = "WORLD_HUMAN_CLIPBOARD"
    },
    -- Prompt Menu Configuration
    PromptSettings = {
        title = 'Lester Crest',
        description = 'Need some hints on some dodgy stuff ey?',
        icon = "fa-solid fa-circle-info",
        autocomplete = true,
    },
    MenuSettings = {
        title = 'Lester Crest',
        description = 'Need some hints on some dodgy stuff ey?',
        searchable = true,
        form = true
    },
    -- Ped Menu Hint Buttons Configuration
    Hints = {
        -- Button Example
    --    {
            -- Label for the button            
    --        Label = 'Shop Robberies',
            -- Description for the button
    --        Description = 'Information on how to hit a Shop',
            -- Icon on the button
    --        Icon = 'fas fa-store',
            -- Simple notify that it displays after pressing the hint button
    --        Notify = 'You gotta scare the shop clerk and pry open his till with a lockpick...',
            -- Notify type either (success, error, info)
    --        NotifyType = 'info',
            -- Duration that the notify stays on the players screen
    --        Duration = 2000
    --    },
        {
            Label = 'Shop Robberies',
            Description = 'Information on how to hit a Shop',
            Icon = 'fas fa-store',
            Notify = 'You gotta scare the shop clerk and pry open his till with a lockpick...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Small Vangelico',
            Description = 'Information on how to hit a Small Vangelico',
            Icon = 'fas fa-building',
            Notify = 'Hack the front panel and smash the jewelry cases...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Big Vangelico',
            Description = 'Information on how to hit a Big Vangelico',
            Icon = 'fas fa-building',
            Notify = 'Hack the front panel and smash the jewelry cases there might also be something in the back...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Fleeca Bank',
            Description = 'Information on how to hit a Fleeca Bank',
            Icon = 'fas fa-bank',
            Notify = 'Setup the big drill and drill into the vault you also might need something to cool it down with...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Art Gallery',
            Description = 'Information on how to hit a Art Gallery',
            Icon = 'fas fa-building',
            Notify = 'You have to sneak around in here and avoid the lasers you hit one of them you mess the job up...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Union Depository',
            Description = 'Information on how to hit a Union Depository',
            Icon = 'fas fa-coin',
            Notify = 'Make sure to come armed the guards will be ready for you...',
            NotifyType = 'info',
            Duration = 2000
        },
        {
            Label = 'Bobcat Security',
            Description = 'Information on how to hit a Bobcat Security',
            Icon = 'fas fa-gun',
            Notify = 'Thermite the doors and kill the guards get ready to blow the vault...',
            NotifyType = 'info',
            Duration = 2000
        },
        -- Add More / Edit ones above if needed.
    }
}
```


---

# 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://kierandev.gitbook.io/documentation/tmc-resources/criminal-hints/config-options.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.
