Line Layout Identifiers
Line layout identifiers are used when referencing any six-number combination on two adjacent rows of the roulette table. This is also known as the Double Street. They are used as supporting identifiers when building action statements or condition statements.
To reference any street layout, you apply the prefix Line followed by a valid linear range of six numbers using only the first and last number that make up a line enclosed in parenthesis ( ). Below is a valid list of all line layout identifiers:
RX Script | Copy Code |
---|---|
Line(1-00) Line(1-6) Line(4-9) Line(7-12) Line(10-15) Line(13-18) Line(16-21) Line(19-24) Line(22-27) Line(25-30) Line(28-33) Line(31-36) Line(1-0) |
Line(1-00) is only valid when the double zero wheel option is selected and will have no effect with the single zero wheel option. The line refers to the individual numbers 0,00,1,2 and 3 which is also known as the 5-line layout that pays 6 for 1. |
Line(1-0) is only valid when the single zero wheel option is selected and will have no effect with the double zero wheel option. The line refers to the individual numbers 0,1,2 and 3 which is also known as the 4-line layout that pays 8 for 1 |
Example 1
The above example references a few line identifiers and their locations.
Example 2
We have decided to place a 4 unit bet on Lines 7-12, 16-21 and 25-30. Using the supporting line layout identifiers along with an action statement, the following example will perform this task.
RX Script | Copy Code |
---|---|
put 4 units on Line(7-12) put 4 units on Line(16-21) put 4 units on Line(25-30) |