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

News:

Odds and payouts are different things. If either the odds or payouts don't change, then the result is the same - eventual loss.

Main Menu
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

Baccarat simulator with Rx

Started by Normy2000, Dec 30, 04:54 PM 2019

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Normy2000

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]
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

ice789


Kairomancer

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.

Kairomancer

It seems his method is a HG.
According to the simulations it profited decently over 3 million spins.

Mister Eko

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.

Clf7

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.

Kairomancer

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.

-