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

News:

The only way to beat roulette is by increasing accuracy of predictions (changing the odds). This is possible on many real wheels.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

Hotnumbers FLATBET System.

Started by ignatus, Apr 30, 10:23 PM 2020

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

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

If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

BTW. IF you want to try other settings (number of Repeats bet) change this line

  if record "Hotnumbers" layout count >= 14 each
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

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
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

meow

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.

ignatus

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:
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

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)...
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Face


precogmiles

Why did you give the holy grail away for free? You know these system junkies will not donate to you.

ignatus

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.
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

Another test 15 Repeaters Bet FLATBET (Not "15 Hotnumbers") as i´ve explained....Livespins

(code already posted)
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

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



If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Sambo88

Hello, I'm new here, with what software do I use this RX code? Thank you!

Normy2000

link:://:.uxsoftware.com/pages/index.html
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

Toimeme

Bonjour Ignatus,
Joues tu encore avec cette méthode? L'as tu amélioré ?
À bientôt

-