This is a popular Bet, A Repeaters system; BET Each number that hits upto 7 numbers, Then STOP/Restart procedure
This was an old code i had, that i modified now; some Features in this code
Progressionline;
1,2,3,5,7,9,12,15,19,23,29,36,44,55,68,85,105,131,162,201,250
ONLY +1 Step in the Progressionline IF the bet/procedure 1-7 Numbers LOST. (For the next Bet/procedure)
ALSO, in this code now, *don't reset progression Until Reached a new high* (This is normys code) but it's not working 100% ...anyway,
Ran two tests now 1 LIVE and 1 RNG, both lasted about 30000 spins, so, pretty good. O0
RX-code
System "Last 7 v1"
//(copyright) ignatus 2019
method "main"
begin
while starting a new session
begin
Set List [1,2,3,5,7,9,12,15,19,23,29,36,44,55,68,85,105,131,162,201,250] to Record "progression" Data
Set List [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15] to Record "Number Bet" Data
end
put 0 to Record "Highest Bankroll" Data
while on each spin
begin
if flag "bet" false each
begin
copy last Number to Record "last1" layout
end
if any number bet won each
begin
if Bankroll > Record "Highest Bankroll" Data
begin
clear Record "Highest Bankroll" Data
put 5000% Bankroll to Record "Highest Bankroll" Data
put 1 on Record "progression" Data Index
end
set flag "bet" false
clear Record "last7BET" layout
clear Record "last7" layout
Put 1 on Record "BETcount" Data Index
// Put 1 on Record "progression" Data Index
put 1 on Record "Number Bet" Data Index
Put 1 on Record "count7" Data Index
end
add 1 on Record "count7" Data index
Put 1 on Record "count7" Data Index
Put 100% of Record "progression" Data to Record "last7BET" layout list
add 1 on Record "BETcount" Data index
If Record "BETcount" Data index >= 8 each
begin
put 1 on Record "BETcount" Data Index
set flag "bet" false
clear Record "last7BET" layout
clear Record "last7" layout
add 1 on Record "progression" Data Index
put 1 on Record "Number Bet" Data Index
Put 1 on Record "count7" Data Index
end
If Record "last7BET" layout list lost each time
begin
Put 100% of Record "progression" Data to Record "last7BET" layout list
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
set flag "bet" false
clear Record "last7BET" layout
clear Record "last7" layout
Put 1 on Record "progression" Data Index
Put 1 on Record "Numbers Bet" Data
End
IF flag "bet" false each
begin
Track last Number for 7 spins to
Record "last7BET" layout
end
{if total bankroll >= 2000 each time
begin
stop session
end}
if total bankroll <= -2000 each time
begin
stop session
end
end
END
TEST 3. (Live spins)
Just so I’m clear:
4
12 - bet 12, 4
9 - bet 12, 4, 9
8 - 12, 4, 9, 8
27 - 12, 4, 9, 8, 27
11 -12, 4, 9,8,27,11
32- 12, 4, 9,8,27,11
No repeaters, so wait for new number then go to second in progression:
36
12, bet 36 &12
36 - win, start over?
Quote from: willtherock on Jan 29, 01:49 PM 2019
Just so I’m clear:
4
12 - bet 12, 4
9 - bet 12, 4, 9
8 - 12, 4, 9, 8
27 - 12, 4, 9, 8, 27
11 -12, 4, 9,8,27,11
32- 12, 4, 9,8,27,11
No repeaters, so wait for new number then go to second in progression:
36
12, bet 36 &12
36 - win, start over?
Yes, almost. :) only thing, AFTER 7 number bet/lost you RE-bet that last number and start again (1-7 numbers) ALSO +1 Step ihe progressionline at this point, (For the NEXT 1-7 number bet)....IF that (1-7) numbers is ALSO lost another +1 step in the progressionline...and so on Until hit, ..here is the next trick IF you don't reach a new high when HIT, *you don't reset the progressionline* But continue with the same bet, *only reset the progressione, when Hit and reached a new high* O0
Nice little system mate, I see why you restart from the winning line as a double turns up often, simple and relaxed game :thumbsup: