Statement: Action, Type: Supporting
Split Nearest
Format: initial-action-statement record-data Split Nearest reference-record-layout
where
-
initial-action-statement = any valid action statement that use these identifiers listed below:
-
record-data = the supporting action identifier, Record Data, that contains a unit value when placing bets.
-
reference-record-layout = the reference supporting action identifier, Record Layout, that contains a roulette number
Description
The Split Nearest is a supporting action identifier that is referencing a roulette layout split that is nearest to a roulette number. For example: if roulette number 21 has appeared, the Split Nearest to that number would be Split(20:21). Since some numbers have overlapping split layouts, only the nearest split layout will be selected.
This reference is used when you want to place bets on a split that is nearest to a roulette number. The record-data will contain the unit value that will be used for placing bets and the reference-record-layout will contain the roulette number that will be used to determine the nearest split location.
The reference-record-layout must only contain roulette individual numbers, (i.e. 1, 2, 3...36,0,00). Any other layouts such as 1st Dozen, Red, Split(4:5) and so on will be ignored. |
Example
We want to make a 5 unit bet on a split layout of the last number that has appeared. To do this, we need to perform the following steps:
-
We will record the last number that has appeared to a data record last number. We will reference this data record when determining the Split nearest.
-
We will store the unit value 5 to a data record bet. We will reference this data record when placing bets on the split layout.
-
We will use the action statement Put 100% to perform the task of placing a 5 unit bet on the Split nearest of the last number that has appeared.
The following example will perform this task.
RX Script | Copy Code |
---|---|
//1. Copy Last Number to the Record "last number" layout //2. Put 5 units on Record "bet" data //3. Put 100% of Record "bet" data to the Split nearest of Record "last number" layout |