# 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>
