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

Roulette-focused => Bet selection => Topic started by: ignatus on May 18, 10:34 AM 2020

Title: Last 10 Repeater2
Post by: ignatus on May 18, 10:34 AM 2020
This was inspired by the Repaters thread. Checked now short test had about a 80-85% winrate ok

Procedure; Wait for 10 (non)-Repeats (from the last 10) then, when a Repeater come BET All numbers (Last 10 numbers) with a 10 number Neg. progression... *note there must be NO other Repeats from the last 10*

BR/SL 750u.

Stop Spincount MAX 250spins.

RX.code
System "Last 10 Repeater2"
// © ignatus 2020 ©

method "main"
begin
while starting a new session
begin
   put 0 to Record "Highest Bankroll" Data

   Set List [1,1,1,2,2,3,4,6,8,11,16,22,30,42,58,80,111,154,213,295]   to Record "progression" Data

end

while on each spin
begin

copy last Number to Record "last1" layout

if any inside bet lost each
begin
if total inside bets count >= 4 each
begin
add 1 on Record "progression" Data Index
end
end

if any inside bet won each
begin
       reset all flags false
        put 1 on Record "progression" Data Index
       clear Record "last10" Layout
end



If Record "Last1" layout is found within Record "Last10" layout each
begin
   if record "last10" layout count >= 10 each
  begin
    set flag "bet" true
  end

end

if flag "bet" true each
begin
Put 100% of Record "progression" Data to Record "last10" layout list
end




If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    reset all flags false
    Put 1 on Record "progression" Data Index
     End



if spin count >= 250 each time
begin
stop session
end

if bankroll <= -750 each time
begin
stop session
end


if flag "bet" false each
begin
Track last number for 10 spins to
Record "last10" layout
end

  end
END

Title: Re: Last 10 Repeater2
Post by: Ross on May 18, 06:43 PM 2020
Ignatus

You're on the right track here but I suggest that you
check the last 12,13,14,15,16,17 and 18 spins to
find one which has 12 uniques to bet on.

I've tested this on BV No Zero with 100% wins.
My programme updates after each spin and I
change my bet if the numbers change. (Only
with fun money as being a citizen of the
Peoples Republic of Australia I'm not allowed
to play with real dosh.)

Don't know if you can do this with RX.
Title: Re: Last 10 Repeater2
Post by: ignatus on May 18, 07:11 PM 2020
Quote from: Ross on May 18, 06:43 PM 2020
Ignatus

You're on the right track here but I suggest that you
check the last 12,13,14,15,16,17 and 18 spins to
find one which has 12 uniques to bet on.

I've tested this on BV No Zero with 100% wins.
My programme updates after each spin and I
change my bet if the numbers change. (Only
with fun money as being a citizen of the
Peoples Republic of Australia I'm not allowed
to play with real dosh.)

Don't know if you can do this with RX.

Hi Ross. Thanks for the testings and suggestions i will test this!

cheers :)
Title: Re: Last 10 Repeater2
Post by: Ross on May 18, 10:00 PM 2020
Ignatus

If you'd like a copy of my programme to play
with send me a PM.
Title: Re: Last 10 Repeater2
Post by: mariopm on May 20, 02:19 AM 2020
how to use code??where i put that code...