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

IT & Software => Other software => Topic started by: Normy2000 on Dec 30, 04:54 PM 2019

Title: Baccarat simulator with Rx
Post by: Normy2000 on Dec 30, 04:54 PM 2019
Hi all,

Just for the fun of it, I have code a Baccarat Simulator in Roulette Xtreme.
Red will be use as Banker with his 5% commission and Black will the Player.
Also include a pretty random bet selection. Have fun!

Regards, nOrMy2o0o  8)

[reveal]
system "NormyBaccaratSimulator"
{
Coded by nOeMy2o0o

Bet selection is RANGOM, we generate 2 random number from 0 to 9 to simulate Banker and Player scores.
Then we add those 2 numbers,
if the result is even, we bet RED (Banker), if odd, we bet BLACK (Player)
Banker comission is 5%, adjust progression as you want
}
method "main"
begin
while starting a new session
    begin
        Load no zero Wheel
        put 1 to record "Progression" data index
        set list of [1,2,4,8,16,32,64,128,256,512,1024] to record "Progression" data
    end
    call "win/loss"
    call "tracking"
end
//***********************************************************************
method "win/loss"
begin
    if any Black has won more 0
    begin
        put 1 of record "progression" data index
    end
   
    if any Red has won more 0
    begin
        clear record "a" data
        put 100% of record "progression" data to record "a" data
        multiply 5 to record "a" data
        divide 100 to record "a" data
        clear record "b" data
        put 100% of bankroll to record "b" data
        subtract 100% of record "a" data from record "b" data
        put 100% of record "b" data to bankroll
        put 1 of record "progression" data index
    end
   
    if any Red-Black Bet has lost more 0
    begin
        add 1 to record "progression" data index
    end
end
//***********************************************************************
method "tracking"
begin
    Generate Random Number from 0 to 9 into Record "player score" data
    Generate Random Number from 0 to 9 into Record "banker score" data
    clear record "total score" data
    add 100% Record "player score" data to record "total score" data
    add 100% Record "banker score" data to record "total score" data

    if record "total score" data = 0
    or record "total score" data = 2
    or record "total score" data = 4
    or record "total score" data = 6
    or record "total score" data = 8
    or record "total score" data = 10
    or record "total score" data = 12
    or record "total score" data = 14
    or record "total score" data = 16
    or record "total score" data = 18
    begin
        put 100% of record "Progression" data on red
    end
   
    if record "total score" data = 1
    or record "total score" data = 3
    or record "total score" data = 5
    or record "total score" data = 7
    or record "total score" data = 9
    or record "total score" data = 11
    or record "total score" data = 13
    or record "total score" data = 15
    or record "total score" data = 17
    begin
        put 100% of record "Progression" data on black
    end
end
[/reveal]
Title: Re: Baccarat simulator with Rx
Post by: ice789 on Jan 01, 11:46 PM 2020
best

thanks
Title: Re: Baccarat simulator with Rx
Post by: Kairomancer on Jan 28, 01:22 PM 2020
Over there at gamblingforums David posted a 7 step martingale EC Random bet system claiming to make a profit of over 8700 units in 321 sessions.

He is using a win goal of 50 units.

Is there anyone good at coding replicate those results?

link:s://:.GF/threads/beating-random-by-betting-random.17401/

Fix the GF to gamblingforums in the url then it should work.
Title: Re: Baccarat simulator with Rx
Post by: Kairomancer on Jan 30, 06:50 PM 2020
It seems his method is a HG.
According to the simulations it profited decently over 3 million spins.
Title: Re: Baccarat simulator with Rx
Post by: Mister Eko on Jan 30, 08:37 PM 2020
Quote from: Kairomancer on Jan 30, 06:50 PM 2020
It seems his method is a HG.
According to the simulations it profited decently over 3 million spins.

Yes, because 7 step Martingale+EC bet is a HG.
Title: Re: Baccarat simulator with Rx
Post by: Clf7 on Jan 31, 01:40 AM 2020
Quote from: Mister Eko on Jan 30, 08:37 PM 2020
Yes, because 7 step Martingale+EC bet is a HG.

Ye guys it is not a HG, Mister eko is right.
Title: Re: Baccarat simulator with Rx
Post by: Kairomancer on Jan 31, 07:43 AM 2020
As it turned out later there was an error in the code.
That random betting method with a progression may still work for a few solid years.