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

Roulette-focused => Testing zone => Topic started by: Anastasius on Jan 05, 05:37 AM 2020

Title: This lasted 100k spins
Post by: Anastasius on Jan 05, 05:37 AM 2020
Can someone test this further :

Start on betting just zero , wait until it misses 37 times then make 6 bets (1-2-3-4-5-6 units) if all miss wait for number 1 to miss 37 times and repeat

Also on a win go to the next number
Until at number 36
Then start again at zero

Doing on just one number doesn't seem to work but swapping each time does cheers

Title: Re: This lasted 100k spins
Post by: ignatus on Jan 05, 08:09 AM 2020
Quote from: Anastasius on Jan 05, 05:37 AM 2020Can someone test this further :

I think its really annoying you asking for someone ELSE to do the work for you, WHY dont you learn to code RX yourself?? I DID, its not very difficult. JUST DO IT? Thank you :/

Here is a test then (Wait for 0 not to hit 36 spins, then Bet 0 with the progressionline, 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
                 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10

TEST1

RX-code
system "Zero TriggerBet"
// © ignatus 2020 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data
       Set List [5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
                 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10] to Record "progression" Data

  end
       Copy List [number 0] to Record "0" Layout



  while on each spin
  begin
{
  if total bankroll >= 2000 each time
begin
stop session
end
}

if total bankroll <= -2000 each time
begin
stop session
end
 

  IF any inside bet lost each
  begin
   add 1 on Record "progression" Data Index
  end

  if any inside bet won each
  begin
     put 1 on Record "progression" Data Index
     Reset all flags false
   end
 


IF number 0 has not hit for 36 times each
begin
set flag "Zero" true
end




IF flag "Zero" true each
begin
Put 100% of Record "progression" Data to Record "0" Layout List
end





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

  end
END

Title: Re: This lasted 100k spins
Post by: Anastasius on Jan 05, 08:52 AM 2020
Cheers for the test ignatis even though it isn't the system .
Too busy at work to learn anything else right now but I appreciate ur effort
Title: Re: This lasted 100k spins
Post by: Anastasius on Jan 05, 08:57 AM 2020
My methods may not work yet but if someone showed u a test that was a long term winner I'm sure you'd be grateful they asked u instead of testing on their own
Title: Re: This lasted 100k spins
Post by: Bigbroben on Jan 05, 01:08 PM 2020
Have a look to see if this is what you request.