Statement: Action, Type: Supporting
Record Layout
Format: initial-action-statement Record "record-name" Layout { dest-support-action }
where
-
initial-action-statement = any valid action statement that use these identifiers listed below:
-
record-name = the text name of the data record enclosed in quotation marks " " that will used to reference this record.
-
dest-support-action = if applicable, any one of the valid destination supporting action identifiers listed below:
Description
The Record Layout identifier reads the record-name and creates a data record if it does not already exist. When referring to the Record Layout, you always identify the data record by its record-name which is inserted between the Record and Layout identifiers; i.e. Record "record-name" Layout. This instructs the designed system that you are referencing the layout field of the record that contains roulette layout information.
When using the data record in an action statement, the layout value of the Record Layout is used to store roulette layout values. The roulette layout values can be a single layout or a list of roulette layouts that are separated by a comma , symbol which is referred to as an item list; i.e. Red, Black, Black, Red or roulette numbers 21, 13, 4, 0, 18. The advantages of an item list is the storage of roulette layouts when tracking roulette numbers or determining patterns. The stored layout information can be later referenced in another action statement or condition statement.
For more information, see Data Records.
Example 1
We want to copy the roulette number that has appeared to the Record Layout of data record last number. Later, we will reference this data record when placing bets. The following example will perform this task.
RX Script | Copy Code |
---|---|
Copy Last Number that has appeared to the Record "last number" layout |
Results from example 1
Example 2
We want to track the last 37 numbers that have appeared to the Record Layout of data record last 37. We note that as each number appears, it will be appended to the end of the layout field. Later we will use this information to determine what numbers are not appearing. The following example will perform this task.
RX Script | Copy Code |
---|---|
Track last Number for 37 spins to Record "last 37" layout |
Results from example 2
Example 3
We want to track the pattern of the even money layout Red, Black for the last 5 occurrences to the Record Layout of data record patterns. The following example will perform this task.
RX Script | Copy Code |
---|---|
Track last Red-Black for the past 5 spins to Record "patterns" layout |