Statement: Action, Type: Initial
Set List
Format: Set List [integer-1, integer-2, integer-3... ] dest-record-data
where
-
[ = required constant left-bracket symbol [
-
integer-1, integer-2... = any numeric variable separated by a comma symbol ,
-
] = required constant right-bracket symbol ]
-
dest-record-data = destination Record Data identifier.
Description
The Set List identifier reads the list of integers between the brackets [ ] and creates a list of values separated by a comma to the dest-record-data. Accessing the values in the list is performed by using the data index.
Example
We have created a bet progression sequence of: 1,2,4,6,8,16,32,64. We want to assigned the sequence list to a data record progression. We will be accessing the values in the list using the data index field. The following example will perform this task.
RX Script | ![]() |
---|---|
Set List [1,2,4,8,16,32,64] to record "progression" data |