Statement: Condition, Type: Supporting
Any Even-Odd Bet or Any Odd-Even Bet
Format: initial-condition-statement Any Even-Odd Bet 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 = if applicable, any numeric value.
Description
The Any Even-Odd Bet identifier instructs the designed system that you are referencing a bet that was placed roulette outside layouts of either Even or Odd on the table layout.
The Any Odd-Even Bet identifier functions exactly the same as the Any Even-Odd Bet identifier. |
When referring to any even-odd layout in a condition statement, the system will read the bet that was placed on any even-odd layout and perform a comparison against another supporting condition identifier to produce a logical true or false result. If any even-odd layout outcome 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
We want to determine if the bet that was placed on any even-odd layout exceeds 10 units, then place a 15 unit bet on the 1st Dozen and 3rd Dozen layouts. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Any Even-Odd Bet has > 10 units begin Put 15 units on 1st Dozen Put 15 units on 3rd Dozen end |