Statement: Condition, Type: Supporting
Total Red-Black Bets or Total Black-Red Bets
Format: initial-condition-statement Total Red-Black 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 Red-Black Bets identifier instructs the designed system that you are referencing a bet that was placed on the roulette outside layouts of Red or Black from the table layout. This identifier is specifically designed to count the number of red-black layouts that have bets placed on the table layout.
The Total Black-Red Bets identifier functions exactly the same as the Total Red-Black Bets identifier. |
For example, if the following actions occurred:
-
a 15 unit bet placed on Red
The total count of red-black layouts that have bets placed on the table layout is 1 even though the total units placed was 15.
When referring to the total count of red-black layouts that have bets placed in a condition statement, the system will count the red-black 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 red-black 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 red-black layouts: See even money layouts for Red and Black.
Example
Our designed system has placed various bets on multiple outside layouts on the table layout including Red or Black. We want to determine if the either Red or Black layout has a bet placed and if so, place a 10 unit bet on Even layout. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Total Red-Black Bets count = 1 begin Put 2 units on Even end |