Statement: Condition, Type: Supporting
Not Hit more
Format: initial-condition-statement source-support-condition Not Hit 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:
-
any roulette table layout identifiers
-
integer = any numeric value.
Description
The Not Hit more identifier reads the source-support-condition layout value and determines if the layout value has not appeared (shown) for more than integer times in a row. The system keeps track of how many times a layout has not appeared in a row using an internal no hit variable. The Not Hit more identifier is used to reference the no hit variable along with the integer to perform a logical comparison.
When performing a not hit 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 1
We want to know if the 1st Dozen layout has not appeared for more than 10 times in a row and if so, place a 20 unit bet on the 1st Dozen. The following example will perform this task.
RX Script | Copy Code |
---|---|
If 1st Dozen has Not Hit more than 10 times in a row begin Put 20 units on 1st Dozen end |
Example 2
We want to know if any of the following list of individual numbers: 12, 13, 19, 21, 22, 32, 29 have not appeared for more than 20 times in a row and if so, place a 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 Not Hit more than 20 times in a row begin Put 1 unit on List [Number 12,Number 13,Number 19, Number 21,Number 22,Number 32, Number 29] end |