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

Coder needed for RX

Started by jjFX, November 22, 2010, 01:39:16 PM

0 Members and 1 Guest are viewing this topic.

jjFX

Need a coder to code a simple system in RX.   
Please PM me. 

Thanks

jjFX

How to make this in RX.

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

help please  :o

bombus

So if the last two numbers add to 50, you bet those two numbers for 1 spin?

jjFX

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.

jjFX

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

jjFX

-