Statement: Condition, Type: Supporting
Found
Format: initial-condition-statement source-support-condition Found dest-record
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:
-
dest-record = a valid destination data record listed below that is the same type as the source-record:
Description
The Found identifier is used to determine if the source-support-condition value is found within a list of values in the dest-record. The process steps to perform this task is listed below:
-
the identifier reads the source-support-condition value and dest-record value list.
-
a comparison is made to determine if the value in source-support-condition is found within the value list from the dest-record.
-
if the condition outcome results of step 2 is true, program control will be passed to the body of the condition block.
Example
We are tracking the last 15 numbers that have appeared into a data record last 15 numbers. For every number that has appeared, we are checking to see if the number has repeated within the last 15 spins and if so, place a bet on all 15 numbers hoping that more repeats will occur. The following example will perform this task.
RX Script | Copy Code |
---|---|
Copy Last Number to Record "last number" layout if Record "last number" layout is Found within Record "last 15 numbers" layout begin Put a 1 unit bet on Record "last 15 numbers" layout list end Track last Number for 15 spins to Record "last 15 numbers" layout |