System One v.8
* Resets Bankroll when reached a new high
* Only look for repeats from the *Last 10 spins*
* IF no hit after 9 losses in a row STOP/RESET
* Progressionline is now 9 steps longer
(Same spins) Chart 1, v.8, chart 2, v7 (old)
RX-code
system "System One v8.0 +Progression"
// © ignatus 2018 ©
method "main"
begin
while starting a new session
begin
put 0 to Record "Highest Bankroll" Data
Set List[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
2,2,2,2,2,2,2,2,2,
3,3,3,3,3,3,3,3,3,
4,4,4,4,4,4,4,4,4,
5,5,5,5,5,5,5,5,5,
8,8,8,8,8,8,8,8,8]
to Record "progression" Data
Set List[1,2,3,4,5,6,7,8,9,10,11,12]
to Record "Lost Spins" Data
Set List[1,2,3]
to Record "Bets placed" Data
end
while on each spin
begin
if total bankroll <= -1000 each time
begin
stop session
end
{IF total spin count = 1000 each
begin
stop session
end
}
copy last Number to Record "last1" layout
If total inside bets count = 0 each
begin
IF Record "last1" layout is found within Record "last18" layout each
begin
set flag "Bet" True
put 1 on Record "Lost Spins" Data Index
put 2 on Record "Bets placed" Data Index
add 1 on Record "progression" Data Index
copy Record "last1" layout to Record "Repeater" layout
Put 100% of Record "progression" Data to Record "Repeater" layout list
end
end
If Record "Bets placed" Data Index = 3 each
begin
IF Record "last1" layout is found within Record "last18" layout each
begin
set flag "Bet" True
put 1 on Record "Lost Spins" Data Index
Put 2 to Record "Bets placed" Data Index
clear Record "Repeater" layout
clear Record "Repeater2" layout
copy Record "last1" layout to Record "Repeater" layout
Put 100% of Record "progression" Data to Record "Repeater" layout list
end
end
else
begin
If Record "Bets placed" Data = 2 each
begin
IF Record "last1" layout is found within Record "last18" layout each
begin
set flag "Bet" True
put 1 on Record "Lost Spins" Data Index
put 3 on Record "Bets placed" Data Index
copy Record "last1" layout to Record "Repeater2" layout
Put 100% of Record "progression" Data to Record "Repeater" layout list
Put 100% of Record "progression" Data to Record "Repeater2" layout list
end
end
end
if any inside bet lost each
begin
add 1 on Record "progression" Data Index
add 1 on Record "Lost Spins" Data Index
end
if Record "Lost Spins" Data Index >= 10 each time
begin
set flag "Bet" False
put 1 on Record "Lost Spins" Data Index
Put 1 to Record "Bets placed" Data Index
clear Record "Repeater" layout
clear Record "Repeater2" layout
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
set flag "Bet" False
clear Record "Repeater" layout
clear Record "Repeater2" layout
Put 1 on Record "progression" Data Index
put 1 on Record "Lost Spins" Data Index
Put 1 to Record "Bets placed" Data Index
End
Track last Number for 10 spins to
Record "last18" layout
if flag "Bet" true each
begin
Put 100% of Record "progression" Data to Record "Repeater" layout list
Put 100% of Record "progression" Data to Record "Repeater2" layout list
end
if any number bet won each
begin
Put 2 to Record "Bets placed" Data Index
put 1 on Record "progression" Data Index
put 1 on Record "Lost Spins" Data Index
clear Record "Repeater" layout
clear Record "Repeater2" layout
copy last number to to Record "Repeater" layout
Put 100% of Record "progression" Data to Record "Repeater" layout list
end
if Bankroll >= Record "Highest Bankroll" Data
begin
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
set flag "Bet" False
clear Record "Repeater" layout
clear Record "Repeater2" layout
Put 1 on Record "progression" Data Index
put 1 on Record "Lost Spins" Data Index
Put 1 to Record "Bets placed" Data Index
end
end
END