Roulette Xtreme 2.0 - System Designer
List (Condition)
Identifier Index > L > List (Condition)

Glossary Item Box

List

Format:  initial-condition-statement  List  [roulette-layout-1, roulette-layout-2, roulette-layout-3... ]   support-condition  dest-support-condition

where

Description

The List is a supporting condition identifier that reads the list of roulette-layouts between the brackets [ ] and compares them against another support-condition identifier to produce a logical true or false result.  When the outcome of the condition is evaluated as true the program control is passed to the body of the condition block.

Example

We are placing bets on 8 numbers using the following roulette layouts: Split(11-12), 21, 13, Split(19-22), Split(29-32).  After placing the bets on those layouts, we use the List identifier to directly determine if all 8 numbers have lost their bets.  If all numbers have lost, increase their bet by 1 unit otherwise, reset their bet back to 2 units.  The following example will perform this task.

RX Script Copy Code
If the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)] have lost each time
begin
  Add 1 unit to the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)]
end
else
begin
  Put 2 units on the List [Split(11-12), Number 21, Number 13, Split(19-22), Split(29-32)]
end

Copyright © 2003 UX Software. All rights reserved