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

News:

The only way to beat roulette is by increasing accuracy of predictions (changing the odds). This is possible on many real wheels.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

trying to script a roulette system but i am stuck

Started by srenzbud7777, Oct 22, 10:34 AM 2012

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

srenzbud7777

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


Juiced91

You said put 100% record progression on "corner" layout. Add the word list after layout and it will put it on both corners.

-