> 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/table-games.md).

# Table Games

![Table Games](/files/fU8AonMvzejfIQnif1vA)

There are three types/colors of tables, for each table game.

* Green (normal bets)
* Purple (High Stake, VIP tables)
* Blue (Junior, low bets)

### Poker

To setup Poker tables, look for PokerTableDatas {} inside **const.lua**

```
Title = "Poker"
```

Name of the table.

```
PlaceBetsTime = 40
```

Duration in seconds. How much time players have for placing their bets.

```
MinBetValueAntePlay = 10
```

Minimum Ante bet. Minimum bet that is needed for playing the table.

```
MaxBetValueAntePlay = 5000
```

Maximum Ante bet.

```
MinBetValuePairPlus = 10
```

Minimum Pair Plus bet.

```
MaxBetValuePairPlus = 500
```

Maximum Pair Plus bet.

```
BadScoreBegins = -1 -- will be deleted in future..
```

When a player leaves the table with losings bigger than 1, the dealer cheers up the player.

```
GoodScoreBegins = 1
```

When a player leaves the table with winnings bigger than 1, the dealer congrats the player.

### Blackjack

To setup Poker tables, look for BlackjackTableDatas {} inside **const.lua**

```
Title = "Blackjack"
```

Name of the table.

```
PlaceBetsTime = 40
```

Duration in seconds. How much time players have for placing their bets.

```
MinimumBet = 10
```

Minimum bet. Minimum bet that is needed for playing the table.

```
MaximumBet = 5000
```

Maximum bet.

```
BadScoreBegins = -1 -- will be deleted in future..
```

When a player leaves the table with losings bigger than 1, the dealer cheers up the player.

```
GoodScoreBegins = 1
```

When a player leaves the table with winnings bigger than 1, the dealer congrats the player.

### Roulette

To setup Poker tables, look for RouletteTableDatas {} inside **const.lua**

```
Title = "Roulette"
```

Name of the table.

```
MaxBets = 10
```

Maximum number of used betting blocks on the table.

```
MinBetValue = 10
```

Minimum bet. Minimum bet that is needed for playing the table.

```
MaxBetValue = 500
```

Maximum amount of chips that can be placed by one click.

```
MaxBetValueOutside = 5000
```

Maximum amount of chips that can be placed on outside bets.

```
MaxBetValueInside = 500
```

Maximum amount of chips that can be placed on inside bets.

```
PlaceBetsTime = 40
```

Duration in seconds. How much time players have for placing their bets.

```
SpinDelayMin = 5
SpinDelayMax = 12
```

Duration in seconds. It takes randomly from 5 to 12 seconds for the ball to land.

```
BadScoreBegins = -1 -- will be deleted in future..
```

When a player leaves the table with losings bigger than 1, the dealer cheers up the player.

```
GoodScoreBegins = 1
```

When a player leaves the table with winnings bigger than 1, the dealer congrats the player.
