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

Roulette-focused => Testing zone => Topic started by: Normy2000 on Feb 11, 03:15 PM 2020

Title: Unique 9
Post by: Normy2000 on Feb 11, 03:15 PM 2020
Track numbers until you have 9 uniques numbers, then bet them once.
If win and new high, retrack and reset progression to 1.
If win and no new high, retrack.
Multiply progression by 2 every 150 spins.

Have fun...  8)

[reveal]
system "Normy Unique test v4"
// wait for 9 uniques, then bet them once, wait next trigger.
method "main"
begin
    while starting a new session
    begin
        put 1 to record "Progression" data
        Put -1 to record "HighestBR" data
        put 0 to record "skip1stSpin" data
        put 0 to record "sc" data
    end
    call "win/loss"
    call "tracking"
end

// ----------------------------------------------------------
method "win/loss"
begin
    if record "skip1stSpin" data = 0 begin return end
   
    if record "sc" data >= 150
    begin
        multiply 2 to record "Progression" data
        put 0 to record "sc" data
    end
   
    if record "Progression" data >= 500
    begin
        put 500 to record "Progression" data
    end
   
    if bankroll >= record "HighestBR" data
    begin
        Put 100% of bankroll to record "HighestBR" data
        put 0 to record "bets count" Data
        put 1 to record "Progression" data
    end

    if any inside bet won each
    begin
        clear record "tracked numbers" layout
        put 0 to record "bets count" Data
    end
end

// ----------------------------------------------------------
method "tracking"
begin
    add 1 to record "sc" Data
    put 1 to record "skip1stSpin" data
    copy last number to record "last spin" layout

    if record "last spin" layout is found in record "tracked numbers" layout
    begin
        clear record "tracked numbers" layout
        put 0 record "bets count" Data
    end

    if record "tracked numbers" layout count >= 9
    begin
        clear record "tracked numbers" layout
        put 0 record "bets count" Data
    end

    if  record "last spin" layout is not found in record "tracked numbers" layout
    begin
        Track Last Number for 9 times to record "tracked numbers" layout
    end

    if record "tracked numbers" layout count < 9
    begin
        exit
    end

    put 100% record "Progression" Data on record "tracked numbers" layout list
    if record "Progression" Data >= record "max" data
    begin
        put 100% record "Progression" Data to record "max" data
    end
end
[/reveal]
Title: Re: Unique 9
Post by: Normy2000 on Feb 11, 08:59 PM 2020
Who the f_ck is this David  :question:
And if you have tested, where are the results?   :P
Stop smoking weed before posting please!  :thumbsup:
Title: Re: Unique 9
Post by: Steeefan2014 on Feb 12, 03:24 AM 2020
Normy, why 9 numbers and not 11 or 12?
Title: Re: Unique 9
Post by: Serendipity on Feb 12, 07:39 AM 2020
Why 9 instead of 12 is not important. The question is why double after 150 spins?
Title: Re: Unique 9
Post by: Clf7 on Feb 12, 10:47 AM 2020
I think this system will also fail like all systems that where posted here in the forum  :-\
Title: Re: Unique 9
Post by: Normy2000 on Feb 13, 08:26 AM 2020
Quote from: Steeefan2014 on Feb 12, 03:24 AM 2020Normy, why 9 numbers and not 11 or 12?
Well, if i put the code there, free to use, it is for you to test! So replace the 9 by 11 or 12 and you will see if better or not.

Same for this: The question is why double after 150 spins? Try something else to see what append, this is call TESTING.  :thumbsup:

Regards, Normy

Title: Re: Unique 9
Post by: nottophammer on Feb 13, 01:38 PM 2020
link:s://:.rouletteforum.cc/index.php?topic=18360.15

Pryanka asked about why wait for 9 unique; why not just bet 9 random.

She or perhaps he liked my answer