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

IT & Software => Coding for Roulette => Topic started by: Toby on Nov 23, 09:56 PM 2010

Title: Roulette Xtreme programing
Post by: Toby on Nov 23, 09:56 PM 2010
I need help to program a system to place units on certain 9 numbers when other numbers hit.
Any help welcome.
It is simple but i do not know how to program.
When numbers 26 0 32 15 19 4 21 2 25 20 14 31 9 hit(any of the 13), you play on 26 0 32 15 19 4 21 14 31(all of the 9 numbers), 1 unit each, flatbetting.
Thanks in advance.
Title: Re: Roulette Xtreme programing
Post by: Fripper on Nov 24, 03:57 AM 2010
I can do that, it's like the only thing I can do in RX.

Give me some time, I put the graf here soon.
:thumbsup:
Title: Re: Roulette Xtreme programing
Post by: Fripper on Nov 24, 04:54 AM 2010
Here yo go mate.

100000 RNG spins
Title: Re: Roulette Xtreme programing
Post by: Twisteruk on Nov 24, 05:09 AM 2010
Fripper is the graph upside down  :D ?
Title: Re: Roulette Xtreme programing
Post by: Toby on Nov 24, 06:01 AM 2010
Thank you very much Fripper, but I have my own trial to test this system.

IÃ,´d like to get the code to test it on my own.

Title: Re: Roulette Xtreme programing
Post by: Fripper on Nov 24, 06:49 AM 2010
Quote from: Twisteruk on Nov 24, 05:09 AM 2010
Fripper is the graph upside down  :D ?

Unfortunately not :D
Quote from: Toby on Nov 24, 06:01 AM 2010
Thank you very much Fripper, but I have my own trial to test this system.

IÃ,´d like to get the code to test it on my own.



Ok no problems, this is what I used. But I am sure there is a much easier way to code this one, but I don't know how  :lol:
method "main"
begin
    if number 26 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31
       
    end
    if number 0 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 32 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 15 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 19 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 4 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 21 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 2 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 25 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 20 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 14 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 31 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
    if number 9 has hit each time
    begin
        put 1 unit on number 26
        put 1 unit on number 0
        put 1 unit on number 32
        put 1 unit on number 15
        put 1 unit on number 19
        put 1 unit on number 4
        put 1 unit on number 21
        put 1 unit on number 14
        put 1 unit on number 31

    end
   
   
   
   
end


Title: Re: Roulette Xtreme programing
Post by: Toby on Nov 24, 10:54 AM 2010
Thank you, but I found errors in the program.

The following message turns up:

(Error), line -1: SYSTEM expected.  But found "method"

I placed "system" for "method" and the same error happened but expecting "method"
Title: Re: Roulette Xtreme programing
Post by: Toby on Nov 24, 10:55 AM 2010
I copied and pasted the code you gave me.
Title: Re: Roulette Xtreme programing
Post by: Fripper on Nov 24, 11:04 AM 2010
Well, maybe I missed the first line, sorry about that.

I couldn't attach the file, it said that I can't attach such a file. Wrong format..
But this is the entire code.

system "My number system"
method "main"
begin
   if number 26 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31
       
   end
   if number 0 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 32 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 15 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 19 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 4 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 21 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 2 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 25 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 20 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 14 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 31 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   if number 9 has hit each time
   begin
       put 1 unit on number 26
       put 1 unit on number 0
       put 1 unit on number 32
       put 1 unit on number 15
       put 1 unit on number 19
       put 1 unit on number 4
       put 1 unit on number 21
       put 1 unit on number 14
       put 1 unit on number 31

   end
   
   
   
   
end


Cheers  :embarrassed:
Title: Re: Roulette Xtreme programing
Post by: Toby on Nov 24, 11:10 AM 2010
Good, now it works
Title: Re: Roulette Xtreme programing
Post by: Fripper on Nov 24, 11:14 AM 2010
Quote from: Toby on Nov 24, 11:10 AM 2010
Good, now it works

Good, I'm happy to assist you  :)
Title: Re: Roulette Xtreme programing
Post by: Twisteruk on Nov 24, 11:44 AM 2010
Quote from: Toby on Nov 24, 11:10 AM 2010
Good, now it works


How did your test go ?
Title: Re: Roulette Xtreme programing
Post by: Toby on Nov 24, 11:48 AM 2010
IÃ,´m testing several items.
Title: Re: Roulette Xtreme programing
Post by: Toby on Dec 09, 09:32 PM 2010
IÃ,´d like to test for instance if i played a 7 number sector such as 26 to 21 and play only on the last hit of the sector changing the number on each hit.
You wait for a number from 26 to 21 to hit and then you place 1 unit on the number hit until a number from 26 to 21 hit again.
If it hits the same number you keep on playing the same number, if not you change it.
Thanks in advance.
Title: Re: Roulette Xtreme programing
Post by: Fripper on Dec 10, 03:46 AM 2010
This is something that I can't do, but there are several people in here that can if they have the time.

Cheers
Title: Re: Roulette Xtreme programing
Post by: Toby on Dec 10, 03:53 AM 2010
Ok, thank you
Title: Re: Roulette Xtreme programing
Post by: Mikeo on Dec 10, 12:24 PM 2010
Quote from: Toby on Nov 23, 09:56 PM 2010
IÃ,´d like to test for instance if I played a 7 number sector such as 26 to 21 and play only on the last hit of the sector changing the number on each hit.
You wait for a number from 26 to 21 to hit and then you place 1 unit on the number hit until a number from 26 to 21 hit again.
If it hits the same number you keep on playing the same number, if not you change it.
Thanks in advance.

Hi Toby,

I think this does what you ask.


system "Bet Last Hit in Sector"

method "main"
begin
   While Starting a New Session
   begin
       Call "Initialize";
   end

   While on each Spin
   begin
      copy last number to record "last number" layout
      if record "last number" layout found in record "sector" layout
      begin
          copy record "last number" layout to record "number to bet" layout
      end
      put 1 unit on record "number to bet" layout
   end
end

method "initialize"
begin
   copy list [26,0,32,15,19,4,21] to record "sector" layout;
end


Title: Re: Roulette Xtreme programing
Post by: Toby on Dec 13, 05:42 PM 2010
Thank you very much Mikeo, IÃ,´ll try it.
Title: Re: Roulette Xtreme programing
Post by: eureka on Mar 28, 05:17 PM 2012
Hello Toby,

I know it's an old thread. I think what coded Mikeo was partially right.

I can help you to sort it out if it is still not ok.

Regards
Title: Re: Roulette Xtreme programing
Post by: Toby on Mar 28, 05:22 PM 2012
 boatran8, thank you, I solved the problem some time ago.

I¨ll ask you if i need you other things.

BR