Statement: Action, Type: Supporting
Neighbor Count
Format: put-action-statement integer Neighbor Count
where
-
put-action-statement = the valid action statement, Put
-
integer = any numeric variable
Description
The Neighbor Count is a supporting action identifier that references the internal neighbors variable. This identifier is used with the Put-action-statement to alter the neighbors variable which affect how many neighbors you will be referencing when storing them into a data record.
For example, if you set the internal neighbors variable to 4 and then use the Copy Neighbor action statement to copy neighbors of roulette number 13 to a data record, the system will copy 4 roulette numbers located on both sides of roulette number 13.
This does not change the Neighbor count value located on the main view. That value is reserved for placing manual bets with neighbors. |
Example
We want to place a 1 unit bet on the last number that has appeared and its neighboring numbers of 5 numbers on each side. To do this, we first set the Neighbor count to 5 and then place bets on those neighbors. The following example will perform this task.
RX Script | Copy Code |
---|---|
Put 5 to the Neighbor Count Copy last Number to Record "last number" layout Copy Neighbors of Record "last number" layout to record "neighbors" layout Put 1 unit bet on Record "last number" layout Put 1 unit bet on Record "neighbors" layout list |