// System: Die Rente /* Haftungsausschluss / Disclaimer Eine Haftung fuer die Richtigkeit der Implementierung des Systems wird NICHT uebernommen, der Download und der Einsatz des Systems erfolgt auf eigenes Risiko! A liability for the correctness of the implementation of the system will NOT be assumed, the download and use of the system is at your own risk! Ing. Thomas Froehlich (www.ing-froehlich.de) */ ST: SZ STMAX(G(15),V(50),N); SZ EI1(1); SZ ST1(3,6,12); // Simple Chance set table SZ ST2(2,4,8); // Dozen set table SZ ST3(1,2,4); SZ CO00(1); // Counter define the set level SZ CO01(0); // Lost Counter - 1 loose mean 3 win runs VE: SZ CO00(+1); IF CO00(4) THEN SZ CO00(3); SZ CO01(+3); IF CO01(>6) THEN SZ CO01(6); GW: IF CO01(>0) THEN SZ CO01(-1); IF CO01(0) THEN SZ CO00(-1); IF CO00(0) THEN SZ CO00(1); AL: IF GZ IN TS01 THEN SZ EI1(ST1(CO00)),EC06; IF GZ IN TS01 THEN SZ EI2(ST3(CO00)),TS03,TS05; IF GZ IN TS03 THEN SZ EI1(ST1(CO00)),EC06; IF GZ IN TS03 THEN SZ EI2(ST3(CO00)),TS01,TS05; IF GZ IN TS05 THEN SZ EI1(ST1(CO00)),EC06; IF GZ IN TS05 THEN SZ EI2(ST2(CO00)),DZ01; IF GZ IN TS07 THEN SZ EI1(ST1(CO00)),EC01; IF GZ IN TS07 THEN SZ EI2(ST2(CO00)),DZ03; IF GZ IN TS09 THEN SZ EI1(ST1(CO00)),EC01; IF GZ IN TS09 THEN SZ EI2(ST3(CO00)),TS07,TS11; IF GZ IN TS11 THEN SZ EI1(ST1(CO00)),EC01; IF GZ IN TS11 THEN SZ EI2(ST3(CO00)),TS07,TS09;