Statement: Condition, Type: Supporting
Total Number Bets
Format: initial-condition-statement Total Number 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 Number Bets identifier instructs the designed system that you are referencing a bet that was placed on the roulette individual numbers from the table layout. This identifier is specifically designed to count the number of individual roulette numbers that have bets placed on the table layout.
For example, if the following actions occurred:
-
a 5 unit bet placed on Number 0
-
a 3 unit bet placed on Number 21, Number 32 and Number 13
-
a 1 unit bet placed on Number 2, Number 7, Number 19 and Number 22
The total count of individual roulette numbers that have bets placed on the table layout is 8 even though the total units placed was 18.
When referring to the total count of individual roulette numbers that have bets placed in a condition statement, the system will count the individual numbers 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 individual roulette numbers that have bets placed is evaluated as true the program control is passed to the body of the condition block.
For information about roulette individual numbers: See Number layouts.
Example
Our designed system has placed various bets on multiple individual numbers on the table layout. We want to determine if the total count of individual numbers that have bets placed exceed 6, 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 Number Bets exceeds the count > 6 begin Put 2 units on Number 0 end |