// System: Degress Variante /* 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) */ // Setze anhand der gezogenen Zahl das erste DZ // Spiele das erste DZ 5mal mit jeweils absteigenden Einsatz // In den nächsten Runden bestimme ein zweites Dutzend und spiele das zweite DZ ebenfalls 5mal mit absteigenden Einsatz // läuft ein DZ aus, bestimme wieder ein DZ ST: SZ ST1(5,4,3,2,1); SZ ST2(5,4,3,2,1); SZ CO20(1); // bet counter 1 SZ CO21(1); // bet counter 2 SZ CO30(0); // DZ 1 marker, necessary to find a other one SZ CO31(0); // DZ 1 marker, necessary to find a other one SZ CO01(0); // 0 = determine first dz SZ CO02(5); // 5 = determine second dz, one round later AL: IF CO01(1) AND IF CO20(6) THEN SZ CO01(0),PT1(C),CO20(1); IF CO02(1) AND IF CO21(6) THEN SZ CO02(0),PT2(C),CO21(1); IF CO01(0) AND IF CO31(<>1) AND IF GZ IN DZ01 THEN SZ PT1(DZ01),CO30(1),CO01(1); IF CO01(0) AND IF CO31(<>2) AND IF GZ IN DZ02 THEN SZ PT1(DZ02),CO30(2),CO01(1); IF CO01(0) AND IF CO31(<>3) AND IF GZ IN DZ03 THEN SZ PT1(DZ03),CO30(3),CO01(1); IF CO02(0) AND IF CO30(<>1) AND IF GZ IN DZ01 THEN SZ PT2(DZ01),CO31(1),CO02(1); IF CO02(0) AND IF CO30(<>2) AND IF GZ IN DZ02 THEN SZ PT2(DZ02),CO31(2),CO02(1); IF CO02(0) AND IF CO30(<>3) AND IF GZ IN DZ03 THEN SZ PT2(DZ03),CO31(3),CO02(1); IF CO02(5) THEN SZ CO02(0); // activated second DZ in the next round IF CO01(1) THEN SZ EI1(ST1(CO20)); IF CO01(1) THEN SZ PT1; IF CO01(1) THEN SZ CO20(+1); IF CO02(1) THEN SZ EI2(ST2(CO21)); IF CO02(1) THEN SZ PT2; IF CO02(1) THEN SZ CO21(+1);