> For the complete documentation index, see [llms.txt](https://docs.ak4y.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ak4y.com/scripts/ak4y-giveaway/configuration.md).

# Configuration

```lua
Config = {}

Config.locales = {}

Config.Locale = "en"

Config.GiveawayCommand = "giveaway"

Config.ItemList = { -- for raffle giveaway type
    ["vehicle"] = {
        'zentorno',
        'asea',
        'drafter'
    },
    ["item"] = {
        [1] = {
            itemname = "ammo-9",
            min = 1,
            max = 5
        },
        [2] = {
            itemname = "water",
            min = 1,
            max = 5
        },
    },
    ["money"] = {
        min = 1000,
        max = 5000
    }
}
```
