Statement: Condition, Type: Supporting
Not Hit Between
Format: initial-condition-statement source-support-condition Not Hit Between from-integer to-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
-
from-integer = any numeric variable
-
to-integer = any numeric variable
Description
The Not Hit Between identifier is used to determine if a roulette individual number has not appeared within the last from-integer and to-integer spins. The process steps to perform this task is listed below:
-
the identifier reads the source-support-condition layout value which must contain an individual roulette number.
-
the identifier validates that both layout values are individual roulette numbers and if not, display an error message to the user.
-
the identifier reads the to-integer and from-integer value.
-
a comparison is made to determine if a individual roulette number has not appeared between the to-integer and from-integer spin range.
-
if the condition outcome results of step 4 is true, program control will be passed to the body of the condition block.
Only individual roulette numbers are allowed to be used for the Hit Between identifier. Any other layout is invalid and will result in an error message. |
Example
We want to determine if all of the numbers 10, 11 or 12 have not appeared within the last 5 to 10 spins and if so, place a 5 unit bet on the streets 7-9 and 13-15. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Number 10 has not hit between 5 to 10 spins And Number 11 has not hit between 5 to 10 spins And Number 12 has not hit between 5 to 10 spins begin Put 5 units on Street(7-9) Put 5 units on Street(13-15) end |