Roulette Xtreme 2.0 - System Designer
Not Hit Between
Identifier Index > N > Not Hit Between

Glossary Item Box

Not Hit Between

Format:  initial-condition-statement  source-support-condition  Not Hit Between  from-integer  to-integer

where

Description

The Not Hit Between identifier is used to determine if a roulette individual number has not appeared within the last from-integer and to-integer spins. The process steps to perform this task is listed below:

  1. the identifier reads the source-support-condition layout value which must contain an individual roulette number.  

  2. the identifier validates that both layout values are individual roulette numbers and if not, display an error message to the user.

  3. the identifier reads the to-integer and from-integer value.

  4. a comparison is made to determine if a individual roulette number has not appeared between the to-integer and from-integer spin range.

  5. if the condition outcome results of step 4 is true, program control will be passed to the body of the condition block.

Only individual roulette numbers are allowed to be used for the Hit Between identifier.  Any other layout is invalid and will result in an error message.

Example

We want to determine if all of the numbers 10, 11 or 12 have not appeared within the last 5 to 10 spins and if so, place a 5 unit bet on the streets 7-9 and 13-15.  The following example will perform this task.

RX Script Copy Code
If Number 10 has not hit between 5 to 10 spins
And Number 11 has not hit between 5 to 10 spins
And Number 12 has not hit between 5 to 10 spins
begin
  Put 5 units on Street(7-9)
  Put 5 units on Street(13-15)
end

Results from example

Copyright © 2003 UX Software. All rights reserved