> 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/dog-interaction/config-options.md).

# Config Options

## Dog Models

```lua
Config.DogModels = {
    -- Add the Model of the Dog Ped Here <<<
}
```

## Keybinds

```lua
Config.KeyBinds = {
    -- Keybinds for the interactions the Dog Can Do
    dog_hump = "",
    dog_sit = "",
    dog_bark = "",
    dog_poo = "",
    dog_sleep = "",
    dog_peeright = "",
    dog_peeleft = "",
    dog_carsit = "",
    dog_playdead = "",
    dog_indicatehigh = "",
    dog_indicatelow = "",
    dog_beg = "",
    dog_itch = "",
    dog_stopsit = "",
    dog_stopsleep = "",
    dog_sniff = "",
    dog_jump = "",
    dog_petted = "",
    dog_pettedtwo = "",
    dog_dual = "",
    dog_dual2 = "",
    dog_playfull = "",
    dog_watch = "",
    dog_rising = "",
    dog_alert = "",
    dog_chasetail = "",
    small_dog_bark = "",
    smalldog_sit = "",
    smalldog_dead = ""
}
```

## Illegal Items

```lua
Config.IllegalItems = {
    -- These are the Illegal Items the Dog Can Smell
    {name = 'meth_bag', label = 'Meth'},
    {name = 'meth_tray', label = 'Meth'},
    {name = 'liquid_meth', label = 'Meth'},
    {name = 'large_meth_bag', label = 'Meth'},
    {name = 'baked_meth_tray', label = 'Meth'},
    {name = 'cokebaggy', label = 'Coke'},
    {name = 'cokebaggy_best', label = 'Coke'},
    {name = 'cokebaggy_decent', label = 'Coke'},
    {name = 'rawcoke', label = 'Coke'},
    {name = 'cokebaggy_good', label = 'Coke'},
    {name = 'cokebaggy_better', label = 'Coke'},
    {name = 'weed_amnesiahaze_bag', label = 'Weed'},
    {name = 'weed_amnesiahaze', label = 'Weed'},
    {name = 'weed_lemonhaze_bag', label = 'Weed'},
    {name = 'weed_lemonhaze', label = 'Weed'},
    {name = 'weed_bluecheese_bag', label = 'Weed'},
    {name = 'weed_bluecheese', label = 'Weed'},
    {name = 'weed_supersilverhaze_bag', label = 'Weed'},
    {name = 'weed_supersilverhaze', label = 'Weed'},
    {name = 'gunpowdercanister', label = 'Gunpowder'},
    {name = 'gunpowder', label = 'Gunpowder'},
    {name = 'ammo_pistol', label = 'Pistol Ammo'},
    {name = 'ammo_smg', label = 'SMG Ammo'},
    {name = 'ammo_shotgun', label = 'Shotgun Ammo'},
    {name = 'ammo_rifle', label = 'Rifle Ammo'},
    {name = 'ammo_sniper', label = 'Hunting Rifle Ammo'},
}
```

## Inventory (Dont Touch)

```lua
Config.Inventory = "qb" -- Options: "qb" or "ox" (for ox_inventory, ensure you have it installed)
```

## Debug

```lua
Config.printDebug = false -- Set to true to enable debug prints in the server console for troubleshooting

```

## Jobs

```lua
Config.AuthorizedPoliceJobs = {
    "police","bcso","sahp"
}
```

## Scent Items

```lua
Config.ScentItems = {
    ['spikestrip'] = {contraband = true,},
    ['oxybox'] = {contraband = false, drug = true},
    ['weapon_spraycan'] = {contraband = true,},
    ['weapon_antidote'] = {contraband = true, drug = false},
}
```

## Animal Peds

```lua
Config.AnimalPeds = {
    {model = "ft-aushep" },
    {model = "a_c_chop"},
    {model = "ft_kangal"},
    {model = "ft-dobermanv2"},
    {model = "ft-gs"},
    {model = "ft-bs" },
    {model = "golden_r"},
    {model = "k9_husky"},
    {model = "ft-bloodhound"},
    {model = "bernard"  },
    {model = "ft-pterrier" },
    {model = "ft-labrador"  },
    {model = "dane"},
    {model = "k9_female"},
    {model = "k9_male" },
    {model = "ft_malinois"},
    {model = "abdog"},
    {model = "dalmatian"},
    {model = "ft-boxer"},
    {model = "huskyk9_new"  },
    
}
```


---

# 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/dog-interaction/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.
