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

Roulette-focused => Bet selection => Topic started by: Normy2000 on Jan 16, 11:39 AM 2020

Title: Baccarat tracker
Post by: Normy2000 on Jan 16, 11:39 AM 2020
Short code for short session (3-4 shoes).

We play Player all the time with a 3 level progression.
Use black to enter Player win and red for Banker win.
Suggested Win Goal=75 units, buy in is 785 units.
Have fun.  8)

Code in the zip or below...
[reveal]
system "normy Bet Player with 3 level prog"
// Coded by: nOrMy2o0o for RF.CC Members
method "main"
begin
    while starting a new session
    begin
        Load no zero Wheel
        copy list [1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36]to record "RED" layout;
        copy list [2,4,6,8,10,11,13,15,17,20,22,24,26,28,29,31,33,35]to record "BLACK" layout;
        put 0 to record "bets count" Data
        set list of [1,2,4,8,8,16,32,64,70,140,280,560] to record "progression" data
        put 1 to record "progression" data index
        Put 0 to record "HighestBR" data
        Put 75 to record "WG" data
        Put 0 to record "Dont Ask" data
        put 100% of record "progression" data on black
        display "Sugested Win Goal is 75 units, good luck! :-)"
    end
    copy last number to record "last spin" layout
    call "check win lose"
    call "tracking"
end
// --------------------------- CHECK WIN / LOSE -------------------------------
method "check win lose"
begin
    if flag "skip1stSpin" is false
    begin
        return
    end
    if bankroll >= record "HighestBR" data
    begin
        Put 100% of bankroll to record "HighestBR" data
        put 1 to record "progression" data index
        put 0 to record "bets count" Data
        if bankroll >= record "WG" data and record "Dont Ask" data = 0
        begin
            if record "Dont Ask" data = 0
            begin
                Ask "Suggested Win Goal is reached. Would you like to continu anyway?"
                if the Last Answer is No then
                begin
                  Stop Session
                end
                else
                begin
                    put 1 to record "Dont Ask" data
                end
            end
        end
    end
    if record "last spin" layout is found in record "BLACK" layout
    begin
        put 0 to record "bets count" Data
        if record "progression" data index > 0 and record "progression" data index < 5
        begin
            put 1 to record "progression" data index
        end
        if record "progression" data index > 4 and record "progression" data index < 9
        begin
            put 5 to record "progression" data index
        end
        if record "progression" data index > 8 and record "progression" data index < 13
        begin
            put 9 to record "progression" data index
        end
        if record "progression" data index > 12
        begin
            display "game lost"
        end
    end
    if record "last spin" layout is found in record "RED" layout
    and record "bets count" Data < 4
    begin
        add 1 of record "progression" data index
    end
end
// -----------------------------------TRACKING -------------------------------
method "tracking"
begin
    if flag "skip1stSpin" is false
    begin
        set flag "skip1stSpin" to true
        return
    end
    if record "last spin" layout is found in record "BLACK" layout
    begin
        put 0 to record "bets count" Data
    end
    if record "last spin" layout is found in record "RED" layout
    begin
        add 1 to record "bets count" Data
    end
    if record "bets count" Data < 4
    begin
        put 100% of record "progression" data on black
    end
end
[/reveal]
Title: Re: Baccarat tracker
Post by: zorro on Jan 17, 10:45 AM 2020
Hi Normy,
really fascinating to play one colour, thanks for sharing
:)

z
Title: Re: Baccarat tracker
Post by: Clf7 on Jan 17, 10:54 AM 2020
Quote from: Normy2000 on Jan 16, 11:39 AM 2020
Short code for short session (3-4 shoes).

We play Player all the time with a 3 level progression.
Use black to enter Player win and red for Banker win.
Suggested Win Goal=75 units, buy in is 785 units.
Have fun.  8)

Code in the zip or below...
[reveal]
system "normy Bet Player with 3 level prog"
// Coded by: nOrMy2o0o for RF.CC Members
method "main"
begin
    while starting a new session
    begin
        Load no zero Wheel
        copy list [1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36]to record "RED" layout;
        copy list [2,4,6,8,10,11,13,15,17,20,22,24,26,28,29,31,33,35]to record "BLACK" layout;
        put 0 to record "bets count" Data
        set list of [1,2,4,8,8,16,32,64,70,140,280,560] to record "progression" data
        put 1 to record "progression" data index
        Put 0 to record "HighestBR" data
        Put 75 to record "WG" data
        Put 0 to record "Dont Ask" data
        put 100% of record "progression" data on black
        display "Sugested Win Goal is 75 units, good luck! :-)"
    end
    copy last number to record "last spin" layout
    call "check win lose"
    call "tracking"
end
// --------------------------- CHECK WIN / LOSE -------------------------------
method "check win lose"
begin
    if flag "skip1stSpin" is false
    begin
        return
    end
    if bankroll >= record "HighestBR" data
    begin
        Put 100% of bankroll to record "HighestBR" data
        put 1 to record "progression" data index
        put 0 to record "bets count" Data
        if bankroll >= record "WG" data and record "Dont Ask" data = 0
        begin
            if record "Dont Ask" data = 0
            begin
                Ask "Suggested Win Goal is reached. Would you like to continu anyway?"
                if the Last Answer is No then
                begin
                  Stop Session
                end
                else
                begin
                    put 1 to record "Dont Ask" data
                end
            end
        end
    end
    if record "last spin" layout is found in record "BLACK" layout
    begin
        put 0 to record "bets count" Data
        if record "progression" data index > 0 and record "progression" data index < 5
        begin
            put 1 to record "progression" data index
        end
        if record "progression" data index > 4 and record "progression" data index < 9
        begin
            put 5 to record "progression" data index
        end
        if record "progression" data index > 8 and record "progression" data index < 13
        begin
            put 9 to record "progression" data index
        end
        if record "progression" data index > 12
        begin
            display "game lost"
        end
    end
    if record "last spin" layout is found in record "RED" layout
    and record "bets count" Data < 4
    begin
        add 1 of record "progression" data index
    end
end
// -----------------------------------TRACKING -------------------------------
method "tracking"
begin
    if flag "skip1stSpin" is false
    begin
        set flag "skip1stSpin" to true
        return
    end
    if record "last spin" layout is found in record "BLACK" layout
    begin
        put 0 to record "bets count" Data
    end
    if record "last spin" layout is found in record "RED" layout
    begin
        add 1 to record "bets count" Data
    end
    if record "bets count" Data < 4
    begin
        put 100% of record "progression" data on black
    end
end
[/reveal]


175 spins are to few to know if it works
Title: Re: Baccarat tracker
Post by: Normy2000 on Jan 17, 11:02 AM 2020
175 hands is what it took to reach the suggested Win Goal!
But click "Continu anyway" when asked, and play all day until you hit a wall if you want.  :thumbsup:
Title: Re: Baccarat tracker
Post by: Clf7 on Jan 17, 11:44 AM 2020
So you play this method and making money long term? And if you hit the wingoal will you play the next day?
Title: Re: Baccarat tracker
Post by: superbet on Jan 17, 12:35 PM 2020
Hi Normand,

I see that you are still active in the roulette, I have send you many emails but you never reply, may I know why?

Marie     mariedegroot084@gmail.com
Title: Re: Baccarat tracker
Post by: Normy2000 on Jan 17, 12:49 PM 2020
Quote from: superbet on Jan 17, 12:35 PM 2020
Hi Normand,

I see that you are still active in the roulette, I have send you many emails but you never reply, may I know why?

Marie     mariedegroot084@gmail.com
First, we are talking Baccarat here.
Second, private subject in private please.

Title: Re: Baccarat tracker
Post by: Clf7 on Jan 17, 12:50 PM 2020
Could you explain please?
Title: Re: Baccarat tracker
Post by: Normy2000 on Jan 17, 01:14 PM 2020
I have been collecting data with this bot for 12h/day for 2 week,
and loosing all 3 levels append around once per 30 hours of play.
So plying 3-4h is safe i guess!  8)

See picture below. This is a 10-11 hour long session.
Most of the time, it win at level 1,
Level 2 been reach 17 times, and we have reach level 3 only 3 times.
Title: Re: Baccarat tracker
Post by: Clf7 on Jan 17, 01:40 PM 2020
I have a 100â,¬ BR could you  say exaclty how to play? (If it is possible with such a low BR)
Title: Re: Baccarat tracker
Post by: Normy2000 on Jan 17, 03:08 PM 2020
There is a mistake in first topic, you need 1185 units bankroll.
If you find a table with .1 minimum bet, you are ok with 112E.
The way to play? is use the tracker!  :thumbsup:
I would suggest to test it before playing real $$