Statement: Action, Type: Supporting
Corner Nearest
Format: initial-action-statement record-data Corner 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 Corner Nearest is a supporting action identifier that is referencing a roulette layout Corner that is nearest to a roulette number. For example: if roulette number 21 has appeared, the Corner Nearest to that number would be Corner(17:21). Since some numbers have overlapping corners, only the nearest corner layout will be selected.
This reference is used when you want to place bets on a Corner 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 corner 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 Corner 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 nearest Corner.
-
We will store the unit value 5 to a data record bet. We will reference this data record when placing bets on the Corner layout.
-
We will use the action statement Put 100% to perform the task of placing a 5 unit bet on the nearest Corner 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 Corner nearest of Record "last number" layout |