# Configuration

{% code overflow="wrap" %}

```
Config = {}

-- [[ FRAMEWORK SETTINGS ]]
-- Options: "Standalone", "QBCore"
Config.Framework = 'Standalone'

-- [[ ITEM AND JOB  SETTINGS ]]
-- Only applies if Config.Framework is set to "QBCore" 
-- The item name required in the player's inventory to use the tint meter.
Config.ItemName = 'tint_meter'

-- A list of job names (as defined in your qb-core jobs.lua/config) that are allowed to use the tint meter.
-- If this list is empty, ANY player can use the meter (assuming they meet the item requirement).
-- Example Job Names: 'police', 'sheriff', 'mechanic', 'traffic_cop'
Config.RequiredJobs = {
    'police'
}
```

{% endcode %}


---

# Agent Instructions: 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://docs.mdevelopment.xyz/m-development-docs/documentation/md-tint-meter/configuration.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.
