Roulette Xtreme 2.0 - System Designer
Hit Between
Identifier Index > H > Hit Between

Glossary Item Box

Hit Between

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

where

Description

The Hit Between identifier is used to determine if a roulette individual number has 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 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.

  6. 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 any of the numbers 10, 11 or 12 has appeared within the last 5 to 10 spins and if so, place a 5 unit bet on the Street 10-12.  The following example will perform this task.

RX Script Copy Code
If Number 10 has hit between 5 to 10 spins
Or Number 11 has hit between 5 to 10 spins
Or Number 12 has hit between 5 to 10 spins
begin
  Put 5 units on Street(10-12)
end

Results from example

Copyright © 2003 UX Software. All rights reserved