VLS Roulette Forum

Roulette System Development & Testing => Roulette Coding Zone => Topic started by: jjFX on November 22, 2010, 01:39:16 PM

Title: Coder needed for RX
Post by: jjFX on November 22, 2010, 01:39:16 PM
Need a coder to code a simple system in RX.   
Please PM me. 

Thanks
Title: Re: Coder needed for RX
Post by: jjFX on November 22, 2010, 04:13:23 PM
How to make this in RX.

IF the sum of the last 2 spins + 10 is 60 play this numbers. . . .

help please  :o
Title: Re: Coder needed for RX
Post by: bombus on November 22, 2010, 06:02:29 PM
So if the last two numbers add to 50, you bet those two numbers for 1 spin?
Title: Re: Coder needed for RX
Post by: jjFX on November 22, 2010, 06:21:05 PM
please log in the CHAT so I can explain better.

I just need something like this.

Example:

last 2 spins: 36,24

Play street 1,2,3

better explanatio. If the sum of last two numbers is 50 play this street, if the sum i 51 play this, if is 42 play this....
something like that.....

So the importat thing is the sum of the last 2 numbers.

With progression. If you WON add +1 unit to next bet, if you LOST -1 unit.
Title: Re: Coder needed for RX
Post by: jjFX on November 22, 2010, 07:07:30 PM
Well I did it  :yahoo:

But now have some problems with the progression. I want that after a win increase the bet for 1 unit if a lost -1 unit, what is wrong in this progresion code????

begin
    while starting a new session
    begin
        clear record "Numbers" layout
        put 1 on record "Progression" data
        exit
    end

    track last number for 2 spins to record "Numbers" layout
   
    if Any street bet has lost each time
    begin
        put 1 to record "Progression" data
    end

    if Any street bet has won each time
    begin
        add 1 to record "Progression" data
    end