FUN game i did yesterday, LUCKY SPINS
BET Last 20 numbers from history of spins (All repeaters will be calculated as 1 number) it will always/most of the time be about 2-4(?) Repeats from the last 20 spins, so number bet, will be LESS than 20. Most of the time number bet will be perhaps 14-18 numbers or so...As you've bet these 14-18 numbers (Negative progressionline 1,2,3,5,9,16,30,55) BUT you also (at the same time) BET each new number that come, WHEN HIT (Reset/Restart procedure)--> BET last 20 numbers..etc
This was supposed to be a "fun game" for RNG, perhaps playing live would be diffucult with so many numbers bet :s
Tested now, (Randomspins) it survived 100 000 spins ;D O0
Cheers
RX-code Lucky Spins
system "Lucky Spins"
// © ignatus 2018 ©
method "main"
begin
while starting a new session
begin
Set List[1,2,3,5,9,16,30,55]
to Record "progression" Data
end
while on each spin
begin
if any inside bet Lost each
begin
Add 1 on Record "progression" Data index
end
if any inside bet won each
begin
put 1 on Record "progression" Data Index
clear Record "last15" layout
put 1 on Record "track15" Data Index
end
Set Max to Record "last15" Layout Index
Add 1 on Record "last15" Layout Index
copy last number to Record "last15" layout
if Record "last15" Layout index >= 20 each
begin
Put 100% of Record "progression" Data to Record "last15" Layout List
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
clear Record "last15" Layout
Put 1 on Record "progression" Data Index
End
end
END
So, ignatus. 100k in the pocket?
Quote from: ignatus on Nov 22, 07:57 AM 2018BET Last 20 numbers from history of spins (All repeaters will be calculated as 1 number) it will always/most of the time be about 2-4(?) Repeats from the last 20 spins
If the 4 repeats are there in 20 spins; then the game is playing perfect.
Spins 21-30 show on average 5 repeats.
Quote from: nottophammer on Nov 22, 08:35 AM 2018
If the 4 repeats are there in 20 spins; then the game is playing perfect.
Spins 21-30 show on average 5 repeats.
It was only a wild guess? ;D But then, seen how many numbers bet with this system (always less than 20, because of repeats)... ;)
Quote from: Robbert on Nov 22, 08:33 AM 2018So, ignatus. 100k in the pocket?
i am poor, i will die poor (if i not start to play soon!) :P no, just kidding, i have everything i need, roulette is just for fun!
Cheers