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

Roulette-focused => Bet selection => Topic started by: ignatus on Apr 09, 05:27 AM 2019

Title: HOTZONE 7
Post by: ignatus on Apr 09, 05:27 AM 2019
Again, Hit'n Run. should make profit (most of the time, atlest a couple of hundred bucks) i tried both Live and RNG, and strange how it seemd, both worked pretty well.

I don't know about winrate (haven't been tested enough),

Gameplay/procedure; Wait for a repeating number (from the last 10) When that repeater come, BET that number +3 neighbours (7 numbers BET). AS soon as a NEW repeater come, bets are re-placed at that new repeter (the 7 number sector). WHEN hit, remove bets and re-start procedure.(IF reached a new high) IF NOT reached a new high, (same bet and +1 step in progressionline for the next bet/trigger) Until Hit and reached a new high.

Progressionline;
1,1,1,1,2,2,2,3,4,4,5,5,6,6,7,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
22,24,26,28,30,33,36,39,42,46,50,55,60,65,71,77,78,86,94,102,111,120,
130,140,150,161,172,185,200,220,240,265,300

TEST 1-3 LIVE spins
TEST 4-5 RNG spins

RX-code
system "HOTZONE 7"
// © ignatus 2019 ©

method "main"
begin
   while starting a new session
  begin

    Set List[1,1,1,1,2,2,2,3,4,4,5,5,6,6,7,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
             22,24,26,28,30,33,36,39,42,46,50,55,60,65,71,77,78,86,94,102,111,120,
             130,140,150,161,172,185,200,220,240,265,300]
              to Record "progression" Data

  end
  put 0 to Record "Highest Bankroll" Data

   while on each spin
  begin
 
{ IF total spin count = 350 each
  begin
  stop session
  end }

{ IF total bankroll >= 1000 each
  begin
  stop session
  end }

  IF total bankroll <= -1500 each
  begin
  stop session
  end
 
      If any inside bet won each
begin
add 1 on Record "progression" Data Index

if Bankroll > Record "Highest Bankroll" Data
begin
  clear Record "Highest Bankroll" Data
  put 1500% Bankroll to Record "Highest Bankroll" Data
  put 1 on Record "progression" Data Index
end


clear Record "nr1" Layout
clear Record "neighbors" Layout
end
 
  Track Last Number for 1 spins to Record "last1" Layout


IF Record "last1" layout is found within Record "last10" layout each
begin
  //clear Record "neighbors" Layout
  //clear Record "nr1" Layout

  Put 3 on Neighbor Count

   Copy Neighbors of Record "last1" Layout
   to Record "neighbors" Layout

   copy Record "last1" Layout to Record "nr1" Layout

  Put 100% of Record "progression" Data to Record "nr1" Layout List
  Put 100% of Record "progression" Data to Record "neighbors" Layout List
end
 

   If Any inside Bet lost each time
begin
  add 1 on Record "progression" Data Index
  Put 100% of Record "progression" Data to Record "nr1" Layout List
  Put 100% of Record "progression" Data to Record "neighbors" Layout List
end






{if total bankroll >= 400 each time
begin
stop session
end

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



  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
  clear Record "nr1" Layout
  clear Record "neighbors" Layout

   Put 1 on Record "progression" Data Index
   End
   
   Track last Number for 10 spins to
Record "last10" layout

   end
END