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

Roulette-focused => Professional Systems & Advice => Topic started by: ignatus on Apr 30, 10:23 PM 2020

Title: Hotnumbers FLATBET System.
Post by: ignatus on Apr 30, 10:23 PM 2020
Well? although all "complaints" these results talk for themselves.

Im doin a re-post here. (about the gameplay) NOW im thinking. its possible to play this, by ALWAYS BETTING on the LAST 14 "HOTnumbers HIT" (that will not be exactly 14 NUMBERs bet (it will be LESS because some number hit more that 2 times) You ONLY Track *numbers of Repeats* (from the last 10)....WHEN you got 14 REPEATS (Then you will BET all the numbers Noted down). SO. That´s the procedure. IF you play like that (ALWAYS BET the 14 LAST REPEATS) You SHOULD (in theory get a similar result) FLATBET ofcourse, and also? it will be a NON-stop game. (i couldn´t code a Non-stop game of the last 14 Repeats) I had to delete the Data matrix Hotnumbers stored in (Before it because it got too Large etc) perhaps some better coder can code this, idk how. anyway. ALSO (in the code) i now, BET only 3 times then STOP,(And Restart procedure/tracking of hotnumbers)...

TEST and see.

RX-code.
System "Hotnumbers FLATBET System"
// © ignatus 2020 ©

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

   Set List [1]
   //,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,30,35,40,45,50,55,65,75,85,100]
   {5,5,5,10,10,10,15,15,15,20,20,20,25,25,25,30,30,30,35,35,35,40,40,40,45,45,45,50,50,55,55,60,60,65,65,70,70,
             75,75,80,80,85,85,90,90,95,95,
             100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,210,220,230,240,250,260,
             270,280,290,300,325,350,375,400,425,450,475,500]
   }
   //1,2,3,4,6,9,14,21,32,64,128,256,512,1024]
   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
if flag "L" true each
begin
if flag "L2" true each
begin
clear Record "Hotnumbers" Layout
clear Record "bet" Layout
reset all flags false
end
set flag "L2" true
end
set flag "L" true

end
end

if any inside bet won each
begin

       clear Record "Hotnumbers" Layout
       clear Record "bet" Layout
       reset all flags false

     // add 1 on Record "progression" Data Index
     {  subtract 2 from Record "progression" Data Index
          if Record "progression" Data Index <= 0 each
          begin
             put 1 on Record "progression" Data Index
          end
      }
       if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
      //  clear Record "Hotnumbers" Layout
    end
end

if total inside bets count = 0 each
begin
  set flag "L" false
  set flag "L2" false
end


If Record "Last1" layout is found within Record "Last10" layout each
begin
   if total inside bets count <= 18 each
   begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout
   duplicate Record "Hotnumbers" to Record "bet"
   end
   
  { if Record "Hotnumbers" Layout count = 46 each
          begin
             clear Record "Hotnumbers" Layout
          end
   }
  if record "Hotnumbers" layout count >= 14 each
  begin
  set flag "bet" true
  end

end

if flag "bet" true each
begin
Put 100% of Record "progression" Data to Record "bet" 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 bankroll >= 750 each time
begin
stop session
end


if bankroll <= -1500 each time
begin
stop session
end
}

Track last number for 10 spins to
Record "last10" layout

  end
END

Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on Apr 30, 11:10 PM 2020
BTW. IF you want to try other settings (number of Repeats bet) change this line

  if record "Hotnumbers" layout count >= 14 each
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 12:05 AM 2020
Found a (perhaps better) setting now *15 Repeaters* Bet..

RX.code
System "Hotnumbers FLATBET System"
// © ignatus 2020 ©

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

   Set List [1]
   //,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,30,35,40,45,50,55,65,75,85,100]
   {5,5,5,10,10,10,15,15,15,20,20,20,25,25,25,30,30,30,35,35,35,40,40,40,45,45,45,50,50,55,55,60,60,65,65,70,70,
             75,75,80,80,85,85,90,90,95,95,
             100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,210,220,230,240,250,260,
             270,280,290,300,325,350,375,400,425,450,475,500]
   }
   //1,2,3,4,6,9,14,21,32,64,128,256,512,1024]
   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
if flag "L" true each
begin
if flag "L2" true each
begin
clear Record "Hotnumbers" Layout
clear Record "bet" Layout
reset all flags false
end
set flag "L2" true
end
set flag "L" true

end
end

if any inside bet won each
begin

       clear Record "Hotnumbers" Layout
       clear Record "bet" Layout
       reset all flags false

     // add 1 on Record "progression" Data Index
     {  subtract 2 from Record "progression" Data Index
          if Record "progression" Data Index <= 0 each
          begin
             put 1 on Record "progression" Data Index
          end
      }
       if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
      //  clear Record "Hotnumbers" Layout
    end
end

if total inside bets count = 0 each
begin
  set flag "L" false
  set flag "L2" false
end


If Record "Last1" layout is found within Record "Last10" layout each
begin
   if total inside bets count <= 18 each
   begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout
   duplicate Record "Hotnumbers" to Record "bet"
   end
   
  { if Record "Hotnumbers" Layout count = 46 each
          begin
             clear Record "Hotnumbers" Layout
          end
   }
  if record "Hotnumbers" layout count >= 15 each
  begin
  set flag "bet" true
  end

end

if flag "bet" true each
begin
Put 100% of Record "progression" Data to Record "bet" 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 bankroll >= 750 each time
begin
stop session
end


if bankroll <= -1500 each time
begin
stop session
end
}

Track last number for 10 spins to
Record "last10" layout

  end
END
Title: Re: Hotnumbers FLATBET System.
Post by: meow on May 01, 12:27 AM 2020
The profit curve looking nice, if its flat bet and no millions involved in betting its good. Myself trying repeaters system as well now, looks like better than anything else.
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 12:44 AM 2020
Quote from: meow on May 01, 12:27 AM 2020
The profit curve looking nice, if its flat bet and no millions involved in betting its good. Myself trying repeaters system as well now, looks like better than anything else.

Great  :thumbsup:
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 03:24 AM 2020
From my testings now. 13-15 Repeaters seems the have the best result. (more than than or less than that seems worse)...anyway, (BTW. 13-15 Repeaters will be about 8-11 number Bet, since some numbers hit more than 2 times)...
Title: Re: Hotnumbers FLATBET System.
Post by: Face on May 01, 04:18 AM 2020
Nice :)
Title: Re: Hotnumbers FLATBET System.
Post by: precogmiles on May 01, 06:16 AM 2020
Why did you give the holy grail away for free? You know these system junkies will not donate to you.
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 06:27 AM 2020
Quote from: precogmiles on May 01, 06:16 AM 2020
Why did you give the holy grail away for free? You know these system junkies will not donate to you.

well? i did it by mistake. now its done.....so knock yourself out.
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 06:40 AM 2020
Another test 15 Repeaters Bet FLATBET (Not "15 Hotnumbers") as i´ve explained....Livespins

(code already posted)
Title: Re: Hotnumbers FLATBET System.
Post by: ignatus on May 01, 11:58 AM 2020
Experimenting with progression now.... Progression either Positive or Negative is always a "Risk" and can and will "get out of  hand" sooner or later...so perhaps shortterm, hitnrun, this can "work", i find Neg. progressionline "less risky", ..anyway,

(Same betselection 15 Repeaters bet, from the last 10),....

Progressionline;
1,1,1,2,2,2,3,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,
30,31,32,33,34,35,36,37,38,39,40,42,44,46,48,50,52,54,56,58,60,65,70,75,80,85,90,95,100

+1 Step for Each Loss. -2 Steps For each Win. and (Reset only when reached a new high)...

RX-code
System "Hotnumbers FLATBET System"
// © 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,2,3,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,
             30,31,32,33,34,35,36,37,38,39,40,42,44,46,48,50,52,54,56,58,60,65,70,75,80,85,90,95,100]
   //,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,30,35,40,45,50,55,65,75,85,100]
   {5,5,5,10,10,10,15,15,15,20,20,20,25,25,25,30,30,30,35,35,35,40,40,40,45,45,45,50,50,55,55,60,60,65,65,70,70,
             75,75,80,80,85,85,90,90,95,95,
             100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,210,220,230,240,250,260,
             270,280,290,300,325,350,375,400,425,450,475,500]
   }
   //1,2,3,4,6,9,14,21,32,64,128,256,512,1024]
   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
{
clear Record "Hotnumbers" Layout
clear Record "bet" Layout
reset all flags false
}
if flag "L" true each
begin
if flag "L2" true each
begin
clear Record "Hotnumbers" Layout
clear Record "bet" Layout
reset all flags false
end
set flag "L2" true
end
set flag "L" true


end
end

if any inside bet won each
begin

       clear Record "Hotnumbers" Layout
       clear Record "bet" Layout
       reset all flags false

     // add 1 on Record "progression" Data Index
       subtract 2 from Record "progression" Data Index
          if Record "progression" Data Index <= 0 each
          begin
             put 1 on Record "progression" Data Index
          end

       if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
      //  clear Record "Hotnumbers" Layout
    end
end

if total inside bets count = 0 each
begin
  set flag "L" false
  set flag "L2" false
end


If Record "Last1" layout is found within Record "Last10" layout each
begin
   if total inside bets count <= 18 each
   begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout
   duplicate Record "Hotnumbers" to Record "bet"
   end
   
  { if Record "Hotnumbers" Layout count = 46 each
          begin
             clear Record "Hotnumbers" Layout
          end
   }
  if record "Hotnumbers" layout count >= 15 each
  begin
  set flag "bet" true
  end

end

if flag "bet" true each
begin
Put 100% of Record "progression" Data to Record "bet" 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 bankroll >= 750 each time
begin
stop session
end


if bankroll <= -1500 each time
begin
stop session
end
}

Track last number for 10 spins to
Record "last10" layout

  end
END



Title: Re: Hotnumbers FLATBET System.
Post by: Sambo88 on May 27, 03:34 AM 2022
Hello, I'm new here, with what software do I use this RX code? Thank you!
Title: Re: Hotnumbers FLATBET System.
Post by: Normy2000 on May 27, 07:09 AM 2022
link:://:.uxsoftware.com/pages/index.html
Title: Re: Hotnumbers FLATBET System.
Post by: Toimeme on May 27, 06:57 PM 2022
Bonjour Ignatus,
Joues tu encore avec cette méthode? L'as tu amélioré ?
À bientôt