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

Glossary Item Box

Count not =

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

where

Description

The Count not = identifier performs a total count of the support-condition and then determines if the total count is not 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 3.

If comparing the total count of the individual roulette numbers above to the integer value of 3, 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 not equal to 3.

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 are not 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 not = 3
begin
  Put 2 units on Number 0
end

Example 2

We want to make bets on two layouts only if there are not 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 not = 3
begin
  Put 5 units on Red
  Put 15 units on Column B
end

Copyright © 2003 UX Software. All rights reserved