> For the complete documentation index, see [llms.txt](https://izzyshop-1.gitbook.io/izzyshop-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://izzyshop-1.gitbook.io/izzyshop-docs/izzyshop-resources/izzy-giveawayv2/configuration.md).

# Configuration

Giveaway creation and management system. Admin IDs, duration, winners, and reward types are configured in config.

### Admin Identifiers

| Property                    | Description                                       |
| --------------------------- | ------------------------------------------------- |
| **Config.AdminIdentifiers** | Admin identifier list allowed to create giveaways |
| `steam`                     | 110000101234567                                   |
| `discord`                   | 483556329781461000                                |
| `license`                   | abcdef...                                         |

### Settings <a href="#izzy-giveawayv2-settings" id="izzy-giveawayv2-settings"></a>

| Property                                           | Description                            |
| -------------------------------------------------- | -------------------------------------- |
| **Config.Settings.MaxGiveawayDuration** (`number`) | Maximum duration (hours, 168 = 7 days) |
| **Config.Settings.MinGiveawayDuration** (`number`) | Minimum duration (minutes, 5)          |
| **Config.Settings.MaxPlayers** / **MinPlayers**    | Participant limits                     |
| **Config.Settings.MaxWinners** / **MinWinners**    | Winner count limits                    |

### Categories <a href="#izzy-giveawayv2-categories" id="izzy-giveawayv2-categories"></a>

Default reward categories in Config.Categories: weapon, car, cash, item

### Language <a href="#izzy-giveawayv2-language" id="izzy-giveawayv2-language"></a>

| Property             | Description                                                                          |
| -------------------- | ------------------------------------------------------------------------------------ |
| **Config.Language**  | en, tr, ar                                                                           |
| **Config.Languages** | UI, categories, items, messages, time, and notifications translations for tr, ar, en |

### Types of Awards

| Property   | Description                                     |
| ---------- | ----------------------------------------------- |
| **weapon** | Weapon reward (code, count)                     |
| **car**    | Vehicle reward (label, model) - added to garage |
| **cash**   | Cash reward (cash/bank, amount)                 |
| **item**   | Item reward (code, count)                       |

```lua
Config.AdminIdentifiers = {
  "steam:110000101234567",
  "discord:483556329781461000"
}

Config.Settings = {
  MaxGiveawayDuration = 168,
  MinGiveawayDuration = 5,
  MaxPlayers = 500,
  MinPlayers = 2,
  MaxWinners = 10,
  MinWinners = 1
}

Config.Categories = { "weapon", "car", "cash", "item" }
Config.Language = "en"
```


---

# 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, and the optional `goal` query parameter:

```
GET https://izzyshop-1.gitbook.io/izzyshop-docs/izzyshop-resources/izzy-giveawayv2/configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
