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

Resources & Downloads => 1 to 4 numbers => Topic started by: celescliff on Feb 16, 11:03 AM 2016

Title: Four Favourite Numbers
Post by: celescliff on Feb 16, 11:03 AM 2016
Play your four favourite numbers.

Wait 5 spins, if your four hasnt showed, bet.

These tests are played with 2 units. Minimum table limit
where I play is 5 units so that's why.

Progression: Flat.

Enjoy!

EDIT:

Mine is 2, 26, 28, 36
Title: Re: Four Favourite Numbers
Post by: RouletteGhost on Feb 16, 11:11 AM 2016
Hey celes.

I just downloaded rx

I was up till 12 last night messing with it

Downloading euro spins from germany and practicing things flat bet

Good one!

The most money i ever won on roulette was "playing my numbers"
Title: Re: Four Favourite Numbers
Post by: celescliff on Feb 16, 11:18 AM 2016
Quote from: RouletteGhost on Feb 16, 11:11 AM 2016
Hey celes.

I just downloaded rx

I was up till 12 last night messing with it

Downloading euro spins from germany and practicing things flat bet

Good one!

The most money i ever won on roulette was "playing my numbers"

It's a great program and is a very good all in one tool. The more you use it the more features you gonna find.  :thumbsup:
Title: Re: Four Favourite Numbers
Post by: NextYear on Feb 16, 02:17 PM 2016
Thanks Celes, sounds nice!

Do we ever stop?
Can you share Rx code?
Title: Re: Four Favourite Numbers
Post by: celescliff on Feb 16, 02:51 PM 2016
Quote from: nextyear on Feb 16, 02:17 PM 2016
Thanks Celes, sounds nice!

Do we ever stop?


Hey, nextyear.

The first four test was aiming for +100 and stop loss at -300, which is what most of my test does. The last test was just to see how it looked if I just let it go and had a stop loss at -1000. It actually survived for over 50000 spins before it eventually went down to -1000. It went up to about -200 and stayed there for a few thousand spins.

Quote
Can you share Rx code?

Sure. I must remind you, though, being a C# guy myself it was a big difference coding in RX. At first sight RX is a horrific language but I hope it will grow on me and since I started with RX scripting just yesterday, it's to soon be judgemental. Anyway, it's easy to modify and short, atleast.  ;)

Here it is:


system "Favourite_Four"

method "main"
begin
    while starting a new session
    begin
        copy list [2, 26, 28, 36] to record "my favourites" layout
        put 0 to record "hit count" data
    end
    while on each spin
    begin
        if record "last #" layout is not found in record "my favourites" layout
        begin
            add 1 to record "hit count" data
        end
        if record "hit count" data >= 5
        begin
           put 2 on record "my favourites" layout list
        end
       
        if number 2 has been hit each time
        begin
            put 0 record "hit count" data
        end

        if number 26 has been hit each time
        begin
            put 0 record "hit count" data
        end

        if number 28 has been hit each time
        begin
            put 0 record "hit count" data
        end

        if number 36 has been hit each time
        begin
            put 0 record "hit count" data
        end
       
    end
end
Title: Re: Four Favourite Numbers
Post by: RouletteGhost on Feb 16, 03:02 PM 2016
Took 185 smart live spins from this forum

Took 2 numbers fro each dozen. Total 6 numbers. Waited 4 spins no hit then go. Hit within 4 spins each time

Did quickly as im at work
Title: Re: Four Favourite Numbers
Post by: NextYear on Feb 16, 03:08 PM 2016
Quote from: celescliff on Feb 16, 02:51 PM 2016
I started with RX scripting just yesterday, it's to soon be judgemental. Anyway, it's easy to modify and short, atleast.  ;)


Geez, are you sooo talented?

I'm ashamed, I tried something few times and am still not worthy at coding.