Statement: Condition, Type: Supporting
Lost more
Format: initial-condition-statement source-support-condition Lost more integer
where
-
initial-condition-statement = any valid condition statement that use these identifiers listed below:
-
source-support-condition = any one the valid series of supporting condition identifiers listed below:
-
integer = any numeric value.
Description
The Lost more identifier reads the source-support-condition layout value and determines the following:
-
a unit bet was placed on the layout during a spin occurrence
and
-
a number appeared that caused the layout to lose the bet for more than integer times in a row.
The system keeps track of how many times a layout has lost a bet in a row using an internal lose variable. The Lost more identifier is used to reference the lose variable along with the integer to perform a logical comparison.
When performing a lost more comparison along with the integer value for the source-support-condition identifier, if the condition outcome is evaluated as true and the program control will be passed to the body of the condition block.
Example
We want to know if the Black layout has lost a bet for more than 2 times in a row and if so, increase the bet by 10 units. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Black has Lost more than 2 times in a row begin Add 10 units to Black end |
Example 2
We want to know if any of the following list of individual numbers: 12, 13, 19, 21, 22, 32, 29 have lost a bet for more than 2 times in a row and if so, increase the bet by 1 unit bet on those numbers. The following example will perform this task.
RX Script | Copy Code |
---|---|
If List [Number 12,Number 13,Number 19, Number 21,Number 22,Number 32, Number 29] has Lost more than 3 times in a row begin Add 1 unit on List [Number 12,Number 13,Number 19, Number 21,Number 22,Number 32, Number 29] end |