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

System of a croatian ! (only for french roulette)

Started by roulettex, September 20, 2008, 12:57:19 PM

0 Members and 1 Guest are viewing this topic.

roulettex

Hello,

who may well test this system? I have seen play several times this system by a professional Croatian player.

Rules : wait to appear the number 2 and immediately play the numbers : 8-22-23 twice.
Repeat the operation when you see the number 2 again. (flat bet)
If you win on the first bet STOP.

This system work only on a live roulette whell no RNG.

I'm UP of 351 units after 1400 spins. ;D

JHM

Sorry to be the one to bring the bad news. Test on 1200 spins.

-6
-6
-6
-6
-6
-6
+35
-6
-6
-6
-6
+25
-6
-6
+35
-6
-6
-6
-6

Total -1

Boo_Ray

This is picture by betting until profit, interesting actualy... based on 2500 airball spins

roulettex

 :o Thank You JHM and Boo_Ray

then you suggest to play up to the first winning number then reset and restart again after the release of a new number 2 and so on ? this is correct Boo_Ray ?
I feel a great improvement, especially if results improve, thank you again Boo_Ray, if you can find other permanences in order to continue the test would be truly great.

Thank You
roulettex

Boo_Ray

hm.. what can I say.. I dont know what 2 has to do with 8,22 and 23 so I cant say anything how to Improve system or something.. Test results were interesting.. But that is not my way of playing, I just did the test.. When I have time I will do twice bet test with same numbers


roulettex

It seems there is an error in the interpretation of the bet, The best results are obtained betting in this way : if the number 2 appear , start betting on numbers 8-22-23 (flat bet) until it obtain a profit.
If the starting bankroll is for example 100 units you must continue to bet the numbers 8-22-23 to get a bankroll of at least 101 chips or more ... If you win (100>) STOP and wait for the next trigger (number 2) and repeat the opertaion again.
I hope to have been more clear.

roulettex

moch

Hi roulettex,

Thanks for sharing the system. I did a little RX code to test your system.


system "System of a croatian v1"
{
*************************************
*     System by roulettex
*         on the VLS Forum
*       Roulette Extreme Code
*               by Moch
*************************************


}
method "main" begin
    // start up
    while starting new session begin
        Clear all records
        call "Init"
        call "WheelType"
        exit
    end

    // count spins
    add 1 record"TotalSpins" data

    // do the tracking
    track last number for record"Spins"data record"Streak"layout
    if record "Streak" layout count < record "Spins" data begin
        exit
    end

    // Bankroll
    if bankroll > record"HighBankroll"data begin
        put 100% bankroll record"HighBankroll"data
        set flag "qualified" false
    end
   
    // act when not qualified
    if flag "qualified" false begin
        if record"Streak"layout = number 2 begin
            set flag "qualified" true
        end
    end

    // act when  qualified
    if flag "qualified" true begin
        put 100% record"Progression"data record"BetLayout"layout list
    end
end

// Methods
method "Init" begin
    set list [1] record "Progression" data
    copy list [number 8, number 22, number 23] record"BetLayout"layout
    // defaults
    put 1 record"Spins"data
    put 0 record"TotalSpins"data
    // Input
    group begin
        display "System ..."
        display "by ..."
        input dropdown " Wheel Type ?
            1:= Single Zero
            2:= Double Zero " record"Wheel"data
    end
    // flags
    set flag "qualified" false
    // assign
    put 100% bankroll record"HighBankroll"data
    put 100% bankroll record"LowBankroll"data
end

method "CalculateNextBet" begin
    put 0 record"Progression"data
    put 0 record"Balance"data
    put 100% record"BetLayout"layout index record"Units"data
    loop until record"Balance"data > record"HighBankroll"data begin
        add 1 record"Progression"data
        duplicate record"Progression" record"Balance"
        put 36 record"Payoff"data
        subtract 100% record"Units"data record"Payoff"data
        multiply 100% record"Payoff"data record"Balance"data
        add 100% bankroll record"Balance"data
    end
end

method "WheelType" begin
    if record"Wheel"data=1 begin
        Load Single Wheel
    end
    else begin
        Load Double Wheel
    end
end



Here is the graph. These were Hamburg Casino live spins from 01-01-2006 to 21-08-2006



Cheers

Moch


moch

-