> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_casino/rcore_casino-2/welcome-bonuses.md).

# Welcome Bonuses

**Welcome Bonuses** are initial bonus resources granted to a player the first time their casino profile is created/loaded.

In practice, this is the starter pack for new casino players, so they can try games immediately (chips, tickets, free spins, etc.) without purchasing.

## Where to configure

Welcome bonuses are configured in:

* `rcore_casino/configs/casino.lua`
* table: `Config.WelcomePack`

```lua
Config.WelcomePack = {
  ["wheeltickets"] = 3,
  ["horsetickets"] = 1,
  ["chips"] = 5000
}
```

## Bonus types (list)

<table data-full-width="false"><thead><tr><th>Bonus key</th><th>Used for</th><th>Notes</th></tr></thead><tbody><tr><td><code>chips</code></td><td>Casino chip balance bonus</td><td>Used as bonus chips balance and can be consumed for betting before regular chips in some flows</td></tr><tr><td><code>wheeltickets</code></td><td>Lucky Wheel ticket count</td><td>Controls free/available wheel entries where ticket logic is used</td></tr><tr><td><code>horsetickets</code></td><td>Inside Track ticket count</td><td>Used for horse-racing/inside-track bonus access</td></tr><tr><td><code>slotspins</code></td><td>Free slot spins</td><td>Optional bonus type recognized by UI/runtime bonus mapping and slots logic</td></tr></tbody></table>
