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. 
			
			
			
				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:
			
			
			
				Here yo go mate.
100000 RNG spins
			
			
			
				Fripper is the graph upside down  :D ?
			
			
			
				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. 
			
			
			
				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
			 
			
			
				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"
			
			
			
				I copied and pasted the code you gave me.
			
			
			
				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:
			
			
			
				Good, now it works
			
			
			
				Quote from: Toby on Nov 24, 11:10 AM 2010
Good, now it works
Good, I'm happy to assist you  :)
			
 
			
			
			
			
				IÃ,´m testing several items.
			
			
			
				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.
			
			
			
				This is something that I can't do, but there are several people in here that can if they have the time.
Cheers
			
			
			
				Ok, thank you
			
			
			
				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
			 
			
			
				Thank you very much Mikeo, IÃ,´ll try it.
			
			
			
				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
			
			
			
				 boatran8, thank you, I solved the problem some time ago.
 
I¨ll ask you if i need you other things.
 
BR