> For the complete documentation index, see [llms.txt](https://b2-scripts.gitbook.io/help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://b2-scripts.gitbook.io/help/paid-resource-guides/b2-dogtags/configuration.md).

# Configuration

**Configuration**

Open the `config.lua` file to configure the script:

```lua
Config = {}

Config.Framework = 'qb' -- 'qb' or 'qbx'
Config.Inventory = 'qb-inventory' -- 'qb-inventory' or 'ox_inventory'
Config.NotifyScript = 'b2_notify' -- 'b2_notify' or 'ox' or 'qb_notify' or 'qbx_notify'

Config.GangTags = {
    ['gang1'] = 'tag_gang1',
    ['gang2'] = 'tag_gang2',
    -- Add more gangs and their corresponding tags - these should be the same as in the gangs.lua file
}

Config.DropOnDeath = true -- Enable or disable the drop mechanism on death
Config.PickUpAvailability = true -- Enable or disable the pick-up availability
Config.Debugging = true -- Enable or disable debugging

Config.CivPlayersDropTags = false  -- Enable or disable the drop of tags when a civilian player dies - false means only gang members will drop tags
Config.PoliceDropTags = true -- Enable or disable the drop of tags when a police officer dies - done via Job
Config.PoliceJob = 'police' -- Define the police job name
```
