VLS Roulette Forum

Roulette System Development & Testing => Roulette Coding Zone => Topic started by: HansHuckebein on April 28, 2010, 01:14:17 PM

Title: wrangler system
Post by: HansHuckebein on April 28, 2010, 01:14:17 PM
hi folks, I've been searching through the rx section but couldn't find was I was looking for.

does anybody have an rx code for betting on the even chances, always following the last but one result?

or could I kindly ask someone to code it?

thanks

hans  :)
Title: Re: wrangler system
Post by: TwoCatSam on April 28, 2010, 03:10:28 PM
I can plug that into Super Roulette and run it for almost 2 million RNG spins if you'd like.

Sam
Title: Re: wrangler system
Post by: HansHuckebein on April 29, 2010, 04:52:08 AM
thank you very much sam, this would be great.  :)

what I'm after is to find out, if betting on the last but one result offers a steady certain hit ratio. so there would be no need to programm a certain progression or the "switches" the wrangler system advises to sometimes apply - just the last but one result.

could you divide the spins into sessions of 100 hundred spins? because this is my usual testing and playing range.

thanks again.  :)

hans
Title: Re: wrangler system
Post by: zeus on May 03, 2010, 01:47:03 PM
Try this:


system "DBL"
method "main"
begin
    While Starting a New Session
    begin
        Clear All Records;
        put 1 on Record "BR" data
        put 1 on Record "HL" data
        put 1 on Record "OE" data
        Exit;
    end

    track last Black-Red for 2 spins to record "Black-Red" layout
    track last High-Low for 2 spins to record "High-Low" layout
    track last Odd-Even for 2 spins to record "Odd-Even" layout
   
    While Record "BR" data = 0
    begin
        Put 1 on Record "BR" data;
    end
    While Record "HL" data = 0
    begin
        Put 1 on Record "HL" data;
    end
    While Record "OE" data = 0
    begin
        Put 1 on Record "OE" data;
    end
if List [black, black] has a pattern match on record "Black-Red" layout
or List [black, red] has a pattern match on record "Black-Red" layout
begin
put 100% of record "BR" data to black
end
if List [red, red] has a pattern match on record "Black-Red" layout
or List [red, black] has a pattern match on record "Black-Red" layout
begin
put 100% of record "BR" data to red
end

if List [High, High] has a pattern match on record "High-Low" layout
or List [High, Low] has a pattern match on record "High-Low" layout
begin
put 100% of record "HL" data to High
end
if List [Low, Low] has a pattern match on record "High-Low" layout
or List [Low, High] has a pattern match on record "High-Low" layout
begin
put 100% of record "HL" data to Low
end

if List [Odd, Odd] has a pattern match on record "Odd-Even" layout
or List [Odd, Even] has a pattern match on record "Odd-Even" layout
begin
put 100% of record "OE" data to Odd
end
if List [Even, Even] has a pattern match on record "Odd-Even" layout
or List [Even, Odd] has a pattern match on record "Odd-Even" layout
begin
put 100% of record "OE" data to Even
end
end

Title: Re: wrangler system
Post by: HansHuckebein on May 03, 2010, 02:55:50 PM
 :good: :thumbsup: :good:

thanks zeus. thanks a lot.  :)