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