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

IT & Software => Coding for Roulette => Topic started by: antimodes on Feb 24, 04:37 PM 2015

Title: Roulette Extreme code
Post by: antimodes on Feb 24, 04:37 PM 2015
Hello everyone,

that's a great website, keep up the work! :)

I am trying to copy and paste a few row of RX code from other system and make by myself some more row.
What i want is take out 5 non-repeating numbers (including 0) and then bet the others 32. That's my code

//system "sample_paolo"

method "main"
begin
    while starting a new session
    begin
        clear record "Spin" layout
        clear record "Last 5 numbers" layout
        clear record "counter" data
        exit
    end

    copy last number to record "Spin" Layout

    if record "Spin" Layout is not found in record "Last 5 numbers" layout then
    begin
        Track last number for 5 times to record "Last 5 numbers" layout
    end
   
    if record "Last 5 numbers" layout count = 5 then
    begin
        while record "counter" data not = 37 then
        begin
            if record "Last 5 numbers" layout not = record "counter" layout then
            begin
                put 1 unit on record "counter" data
            end
            add 1 to record "counter" data
        end
    end
end //

Apparently is right but it does not work :\
Someone can help me to understand better ?
Sorry for my english, i am italian.
Thank you in advance.
Paolo
Title: Re: Roulette Extreme code
Post by: Normy2000 on Feb 25, 09:22 AM 2015
Here we go:
=============================================

system "sample_paolo"

method "main"
begin
    while starting a new session
    begin
        clear record "Spin" layout
        clear record "Last 5 numbers" layout
        Clear record "0 appears" layout
    //    clear record "counter" data
        Copy List [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
               20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0]
                    to record "table" layout
        exit
    end

    copy last number to record "Spin" Layout

    if record "Spin" Layout is not found in record "Last 5 numbers" layout then
    begin
        Track last number for 5 times to record "Last 5 numbers" layout
    end

    if record "Last 5 numbers" layout count = 5 then
    begin
        call "Flag numbers that appeared"
        call "Copy 0 appears"
        Put 1 unit on record "0 appears" layout list
    end
end

Method "Flag numbers that appeared"
Begin
    clear record "table" data;
    put 1 on record "table" layout index;
    put 1 on record "table" data index;

    loop until record "table" layout index > record "table" layout count
    begin
        put 1 on record "Last 5 numbers" layout index;

        loop until record "Last 5 numbers" layout index > record "Last 5 numbers" layout count
        begin
            if record "table" layout = record "Last 5 numbers" layout
            begin
                add 1 to record "table" data;
            end

            add 1 to record "Last 5 numbers" layout index;
        end

        add 1 to record "table" data index;
        add 1 to record "table" layout index;
    end
End
// ************************************************************************
method "Copy 0 appears"
begin
    Clear record "0 appears" layout
    Put 1 on record "table" layout index

    loop until record "table" layout index > record "table" layout count
    begin
        put 100% of record "table" layout index to record "table" data index

        If  record "table" data = 0
        begin
            Set Max to record "0 appears" layout index
            Add 1 to record "0 appears" layout index

            Copy record "table" layout to record "0 appears" layout
        end

        Add 1 to record "table" layout index
    end
end
Title: Re: Roulette Extreme code
Post by: Normy2000 on Feb 25, 09:35 AM 2015
And this is a 1 day play at Dublin:
Title: Re: Roulette Extreme code
Post by: antimodes on Feb 25, 10:55 AM 2015
Dear Normy2000,

many thanks for your work, i really REALLY appreciated. I will study it that night with the software to understand better where i did not right...because there's a huge hole in my mind.

But it's not the final idea that i wanted to explain, i know that it's loser.
For each new number spin out, i take the 1 piece from that, so it will bets less money. In a mid-way it could gain something until the bankroll will be the same at the beginning +1

I hope it makes sense what i wrote.

Thank you in advance, again
Paolo
Title: Re: Roulette Extreme code
Post by: Normy2000 on Feb 26, 09:58 AM 2015
Quote from: antimodes on Feb 25, 10:55 AM 2015
What i want is take out 5 non-repeating numbers (including 0) and then bet the others 32
This part is clear.

Quote from: antimodes on Feb 25, 10:55 AM 2015
For each new number spin out, i take the 1 piece from that, so it will bets less money. In a mid-way it could gain something until the bankroll will be the same at the beginning +1
This one is not.
Title: Re: Roulette Extreme code
Post by: antimodes on Feb 26, 03:04 PM 2015
Dear Normy2000,

thank you so much for your reply and help, again.

I will try to explain myself better but i think that you should be paid for that work (i see that you live with that job). Please let me know.

Just an example:

first 5 non repated number (in order) : 0-2-6-15-20;
put 1 piece to others 32 numbers;
[ positive scenario ]
one more spin, exit number 17, win, program stop because bankroll is higher than initial bankroll.
[ negative or alternative scenario ]
one more spin, exit number 0, lost, program continue to bet same numbers;
one more spin, exit number 18, win, program continue to bet 1 piece to 31 numbers because last spin is not on the list of the others 5;
one more spin, exit number 25, win, program continue to bet 1 piece to 30 numbers because last spin is not on the list of the others 6;
and so on until bankroll will be higher than initial bankroll.

p.s.: the 5 first numbers could be more, 10, to make bet/win more compatible

p.p.s.: is there any better tutorial or manual (not the basic one from the website) about rx coding ?

A billions of thanks
Paolo
Title: Re: Roulette Extreme code
Post by: Normy2000 on Feb 26, 07:16 PM 2015
Hi Paolo,

Would you mind to continue via personal email please, i still have questions about when a Win occur?
support@norcosoft.com

Regards, Normy
Title: Re: Roulette Extreme code
Post by: nottophammer on Feb 26, 07:27 PM 2015
Quote from: antimodes on Feb 26, 03:04 PM 2015
Dear Normy2000,

thank you so much for your reply and help, again.

I will try to explain myself better but i think that you should be paid for that work (i see that you live with that job). Please let me know.

Just an example:

first 5 non repated number (in order) : 0-2-6-15-20;
put 1 piece to others 32 numbers;
[ positive scenario ]
one more spin, exit number 17, win, program stop because bankroll is higher than initial bankroll.
[ negative or alternative scenario ]
one more spin, exit number 0, lost, program continue to bet same numbers;
one more spin, exit number 18, win, program continue to bet 1 piece to 31 numbers because last spin is not on the list of the others 5;
one more spin, exit number 25, win, program continue to bet 1 piece to 30 numbers because last spin is not on the list of the others 6;
and so on until bankroll will be higher than initial bankroll.

p.s.: the 5 first numbers could be more, 10, to make bet/win more compatible

p.p.s.: is there any better tutorial or manual (not the basic one from the website) about rx coding ?

A billions of thanks
Paolo

Looks like your idea is to play the numbers off the mat, as the numbers hit, less to cover,means more win.
Like waiting for the bus to come, LOL
Title: Re: Roulette Extreme code
Post by: iggiv on Feb 27, 09:55 AM 2015
What about this poll? Error of some kind?
Title: Re: Roulette Extreme code
Post by: Normy2000 on Feb 27, 10:07 AM 2015
I had the same question, probably.
Title: Re: Roulette Extreme code
Post by: iggiv on Feb 27, 10:23 AM 2015
OK i am gonna remove it.
Title: Re: Roulette Extreme code
Post by: antimodes on Feb 27, 10:53 AM 2015
Quote from: iggiv on Feb 27, 09:55 AM 2015
What about this poll? Error of some kind?

It's an error, sorry.

Quote from: nottophammer on Feb 26, 07:27 PM 2015
Looks like your idea is to play the numbers off the mat, as the numbers hit, less to cover,means more win.
Like waiting for the bus to come, LOL

A sort of... xD

Quote from: Normy2000 on Feb 26, 07:16 PM 2015
Hi Paolo,
Would you mind to continue via personal email please, i still have questions about when a Win occur?
Regards, Normy

Thank you so much, i really appreciated. I will contact you, maybe i have some more ideas to develop
Title: Re: Roulette Extreme code
Post by: nottophammer on Jan 24, 06:55 AM 2016
Quote from: antimodes on Feb 26, 03:04 PM 2015
Dear Normy2000,

thank you so much for your reply and help, again.

I will try to explain myself better but i think that you should be paid for that work (i see that you live with that job). Please let me know.

Just an example:

first 5 non repated number (in order) : 0-2-6-15-20;
put 1 piece to others 32 numbers;
[ positive scenario ]
one more spin, exit number 17, win, program stop because bankroll is higher than initial bankroll.
[ negative or alternative scenario ]
one more spin, exit number 0, lost, program continue to bet same numbers;
one more spin, exit number 18, win, program continue to bet 1 piece to 31 numbers because last spin is not on the list of the others 5;
one more spin, exit number 25, win, program continue to bet 1 piece to 30 numbers because last spin is not on the list of the others 6;
and so on until bankroll will be higher than initial bankroll.

p.s.: the 5 first numbers could be more, 10, to make bet/win more compatible

p.p.s.: is there any better tutorial or manual (not the basic one from the website) about rx coding ?

A billions of thanks
Paolo
Quote from: nottophammer on Feb 26, 07:27 PM 2015
Looks like your idea is to play the numbers off the mat, as the numbers hit, less to cover,means more win.
Like waiting for the bus to come, LOL

Quote from: antimodes on Feb 27, 10:53 AM 2015
It's an error, sorry.

A sort of... xD Is antimodes working on something like KTF

Thank you so much, i really appreciated. I will contact you, maybe i have some more ideas to develop