Statement: Condition, Type: Supporting
Total Dozen Bets
Format: initial-condition-statement Total Dozen Bets support-condition integer
where
-
initial-condition-statement = any valid condition statement that use these identifiers listed below:
-
support-condition = any one the valid series of supporting condition identifiers listed below:
-
integer = any numeric value.
Description
The Total Dozen Bets identifier instructs the designed system that you are referencing a bet that was placed on 1st Dozen, 2nd Dozen or 3rd Dozen from the table layout. This identifier is specifically designed to count the number of dozen layouts that have bets placed on the table layout.
For example, if the following actions occurred:
-
a 15 unit bet placed on 1st Dozen
-
a 10 unit bet placed on 3rd Dozen
The total count of dozen layouts that have bets placed on the table layout is 2 even though the total units placed was 25.
When referring to the total count of dozen layouts that have bets placed in a condition statement, the system will count the dozen layouts that have a bet placed and perform a comparison against another support-condition identifier to produce a logical true or false result. If the outcome of the total count of dozen layouts that have bets placed is evaluated as true the program control is passed to the body of the condition block.
For information about roulette dozen layouts: See Dozen layouts.
Example
Our designed system has placed various bets on multiple dozen layouts on the table layout. We want to determine if the total count of dozen layouts that have bets placed equals 2, then place a 2 unit bet on the Number 0 as an insurance bet. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Total Dozen Bets count = 2 begin Put 2 units on Number 0 end |