VLS Roulette Forum

Main => Full Roulette Systems => Topic started by: roulettex on September 20, 2008, 12:57:19 PM

Title: System of a croatian ! (only for french roulette)
Post by: roulettex on September 20, 2008, 12:57:19 PM
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
Title: Re: System of a croatian ! (only for french roulette)
Post by: JHM on September 20, 2008, 01:29:34 PM
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
Title: Re: System of a croatian ! (only for french roulette)
Post by: Boo_Ray on September 20, 2008, 01:48:56 PM
This is picture by betting until profit, interesting actualy... based on 2500 airball spins
Title: Re: System of a croatian ! (only for french roulette)
Post by: roulettex on September 20, 2008, 02:55:39 PM
 :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
Title: Re: System of a croatian ! (only for french roulette)
Post by: Boo_Ray on September 20, 2008, 03:32:21 PM
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
Title: Re: System of a croatian ! (only for french roulette)
Post by: winkel on September 20, 2008, 04:15:07 PM
1000 spins 19 losses 1 win

Title: Re: System of a croatian ! (only for french roulette)
Post by: roulettex on September 20, 2008, 05:32:04 PM
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
Title: Re: System of a croatian ! (only for french roulette)
Post by: moch on September 21, 2008, 02:48:10 PM
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
(https://www.vlsroulette.com/proxy.php?request=nolinks%3A%2F%2Fimg210.imageshack.us%2Fimg210%2F6872%2Fsystemofacroatianij3.th.jpg&hash=60f4ece2a4934110a1ba0b1de92292dc28cd4e5a) (nolinks://img210.imageshack.us/my.php?image=systemofacroatianij3.jpg)(https://www.vlsroulette.com/proxy.php?request=nolinks%3A%2F%2Fimg210.imageshack.us%2Fimages%2Fthpix.gif&hash=cf9722b1771e87b476f1ea71c13f4777b5c3674e) (nolinks://g.imageshack.us/thpix.php)


Cheers

Moch