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