Data Records
To access the Data Records window, select Statistics > Data Records or Ctrl+F5 from the Main window.
The Data Records window is a data table containing a list of records that are created through a designed system. Each record contains data, roulette layout and name fields. You identify a record by the name field and every record must have an unique name. The data table is displayed through the Data Records view in a grid format.
Data Records are used in a variety of ways. They provide the means to temporary store data and roulette layout information that can later be referenced and used in a designed system. They are used in condition statements to evaluate a true or false condition before performing some action or directly used in an action statement. The following are some examples of the data records usage:
-
to store a list of progression numbers when placing bets.
-
to store a list of roulette layouts to place bets and use for comparisons
-
to store a counter to keep track of wins and losses or point to the next progression in a list
-
to track and store last n numbers to a data record
The possibilities are only limited by your own imagination.
Column Information
-
Record: The Data Record number listed in numeric order.
-
Name: The name of the record enclosed in quotation marks " ". This must be unique and cannot be a duplicate.
-
Data: A field in the record that contains only numeric information. The numeric information can be a single number or a list of numbers followed by a comma.
-
Data Index: A pointer to the position of the next number in the data field. Default is set to 1 when a number is in the data field. If there are multiple numbers in a list, then the data index can be used to point to a different number in that list.
- Layout: A field in the record that contains only roulette layout information. The layout information can be a single roulette layout or a list of roulette layouts followed by a comma.
- Layout Index: A pointer to the position of the next roulette layout in the layout field. Default is set to 1 when a roulette layout is in the layout field. If there are multiple roulette layouts in a list, then the layout index can be used to point to a different layout in that list.
Code Syntax
The correct syntax to create a data record in a designed system is displayed below:
RX Script | ![]() |
---|---|
//create a record to keep track of the total count Put 1 on Record "total count" Data //create a progression list for betting Set List [1,1,2,2,4,8,16] to Record "progression" Data //create a list of roulette numbers to place bets Copy List [Number 12,Number 19,Number 21,Number 32] to Record "numbers" Layout //create a record to contain the last number that has appeared //Note: Number 13 is used for this example only Copy Number 13 to Record "last number" Layout |