Roulette Xtreme 2.0 - System Designer
Count=<
Identifier Index > C > Count=<

Glossary Item Box

Count <=

Format:  initial-condition-statement  support-condition  Count <= integer

where

Description

The Count <= identifier performs a total count of the support-condition and then determines if the total count is less than or equal to the numeric value that is referenced by the integer identifier.

For example, if the following actions occurred:

  • a 1 unit bet placed on Number 1, Number 32, Number 0, Number 19 and Number 29.

  • we are comparing the total count of individual numbers to the integer value of 5.

If comparing the total count of the individual roulette numbers above to the integer value of 9, the condition outcome would be evaluated as true and the program control will be passed to the body of the condition block because the actual total count is 5 which is less than or equal to the count of 5.

Example 1

Our designed system has placed various bets on multiple individual numbers on the table layout.  If the total count of individual numbers that have bets placed is less than or equal to 3, then place a 2 unit bet on the Number 0 as an insurance bet.  The following example will perform this task.

RX Script Copy Code
If Total Number Bets count <=3 
begin
  Put 2 units on Number 0
end

Example 2

We want to make bets on two layouts only if there is less than or equal to 3 data flags that contain a state value of true.  The following example will perform this task.

RX Script Copy Code
If All True Flags count <=3
begin
  Put 5 units on Red
  Put 15 units on Column B
end

Copyright © 2003 UX Software. All rights reserved