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


---

# Agent Instructions: 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:

```
GET https://documentation.rcore.cz/paid-resources/rcore_casino/table-games.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
