Statement: Condition, Type: Supporting
List
Format: initial-condition-statement List [roulette-layout-1, roulette-layout-2, roulette-layout-3... ] support-condition dest-support-condition
where
-
initial-condition-statement = any valid condition statement that use these identifiers listed below
-
[ = required constant left-bracket symbol [
-
roulette-layout-1, roulette-layout-2... = any roulette table layout identifiers separated by a comma symbol ,
-
] = required constant right-bracket symbol ]
-
support-condition = any one of the valid series of supporting condition identifiers listed below:
-
dest-support-condition = any one of the valid destination supporting condition identifiers listed below:
-
integer, Record Layout
-
Description
The List is a supporting condition identifier that reads the list of roulette-layouts between the brackets [ ] and compares them against another support-condition identifier to produce a logical true or false result. When the outcome of the condition is evaluated as true the program control is passed to the body of the condition block.
Example
We are placing bets on 8 numbers using the following roulette layouts: Split(11-12), 21, 13, Split(19-22), Split(29-32). After placing the bets on those layouts, we use the List identifier to directly determine if all 8 numbers have lost their bets. If all numbers have lost, increase their bet by 1 unit otherwise, reset their bet back to 2 units. The following example will perform this task.
RX Script | Copy Code |
---|---|
If the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)] have lost each time begin Add 1 unit to the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)] end else begin Put 2 units on the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)] end |