# Table Games

![Table Games](https://1037498771-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MZErcztD5BvrKnwRGJq%2Fuploads%2Fgit-blob-768bfda695e816ef7dcde89d4b17510e3460fb67%2Ftables.png?alt=media)

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.
