Questo sito fa uso di cookie, i cookie introducono una gamma di servizi che migliorano la tua fruizione del sito. Utilizzando il sito si ritiene accettato l'uso dei cookie secondo le nostre linee guida. Per maggiori informazioni clicca qui.

Home Risorse Roulette Xtreme Sistemi Xtreme The Light Progression System v2

The Light Progression System v2

(n.d. | Turbogenius) Progressione in 9 termini per dozzine.

Xtreme icon The Light Progression System V2.dgt — Xtreme, 1 KB

Contenuto del file

system "The Light Progression System V2"
// coded by TurboGenius

{
1.) Pick a third to bet on, preferably the numbers 1-12.
2.) If you win, great! If you lose however start this
progression sequence until you win again:
1,2,3,4,5,8,12,18 and finally 27.
3.) When you win, you will have recouped your losses with
a profit on all the previous spins (except on 5 which
breaks even) and can start over from one.
}

method "main"
begin
while starting a new session begin
set list of [1,2,3,4,5,8,12,18,27] to record "Bet" data
end

If 1st dozen hit each time begin
put 1 to record "Bet" data index
end
If 1st dozen not hit each begin
add 1 to record "Bet" data index
end

put 100% of record "Bet" data on 1st dozen

end