Statement: Action, Type: Initial
Copy List
Format: Copy List [roulette-layout-1, roulette-layout-2, roulette-layout-3... ] dest-record-layout
where
-
[ = required constant left-bracket symbol [
-
roulette-layout-1, roulette-layout-2... = any roulette table layout identifiers separated by a comma symbol ,
-
] = required constant right-bracket symbol ]
-
dest-record-layout = destination Record Layout identifier.
Description
The Copy List identifier reads the list of roulette-layouts between the brackets [ ] and creates a list of roulette layouts separated by a comma to the dest-record-layout. Accessing the roulette layouts in the list is performed by using the layout index.
Example
We want to place the same bets on our special roulette layouts. To do this, we will assign a list of those roulette layouts to data record numbers. Later, we will place bets on those roulette layouts by using the layout list identifier. The following example will perform this task.
RX Script | ![]() |
---|---|
Copy List [Split(11-12), Number 19, Number 21, Split(29-32)] to record "numbers" layout //Note: Below Action statement is the same as above with //the word "Number" removed from 19 and 21 Copy List [Split(11-12), 19, 21, Split(29-32)] to record "numbers" layout |