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