#1 Roulette Forum & Message Board | www.RouletteForum.cc

IT & Software => Coding for Roulette => Topic started by: srenzbud7777 on Oct 22, 10:34 AM 2012

Title: trying to script a roulette system but i am stuck
Post by: srenzbud7777 on Oct 22, 10:34 AM 2012
Hi, i have been trying to write a roulette system to RX Script but am having difficulty.

The system goes like so :

You wait for 2 corners to skip 6 times then start a progression until you either win or get to the end and then start over.

The script goes like so :

method "main"
begin
    while starting a new session
    begin
        copy list [corner(8:12),corner(26:30)] to record "corner" layout
        set list of [1,2,3,4,5,6,8,10,15,20] to record "progression" data

        put 1 to record "progression" data
    end

    If record "corner" layout has Not Hit more than 6 times in a row
    begin
        put 100% of record "progression" data to record "corner" layout
    end

    if Any Corner Bet has lost each time
    begin
        add 1 to record "progression" data index  // must use index its a reference to the data index the progression is in
        put 100% of record "progression" data to record "corner" layout
    end

    if Any Corner Bet has won each time
    begin
        put 1 to record "progression" data index
    end

    if Record "progression" data index > the Record "progression" data count
    begin
        put 1 to record "progression" data index
        put 100% of record "progression" data to record "corner" layout
    end
end


The problem is it only places bets on corner (8:12) and doesnt the other why not?

If any one can help i would be very greatfull

Thanks

Stephen

Title: Re: trying to script a roulette system but i am stuck
Post by: Juiced91 on Oct 25, 06:58 AM 2012
You said put 100% record progression on "corner" layout. Add the word list after layout and it will put it on both corners.