' 31 Progression System using the Pass Line ' Progression series is 1-1-1-2-2-4-4-8-8 units ' For a win on any step in the series, press the amount and bet again ' If a pressed amount wins then start the progression over ' For a loss, go to the next higher step in the progression ' ' Checkstack #1 keeps track of the current step in the progression ' Checkstack #2 keeps track of the # of times the complete progression lost ' Checkstack #3 keeps track of pressed bets If Initializing script Then cs0.unit = minimum bet EndIf If A Point is established on any(4, 5, 6, 8, 9, 10) Then GoTo "End" EndIf If PassLine loses Then If cs1.currentstep < 8 Then Add 1 on cs1.currentstep : cs3.pressed = false Else cs1.currentstep = 0 : Add 1 on cs2.num_prog_losses : cs3.pressed = false : Show message "End of progression reached - starting over." : GoTo "Make bets" EndIf ElseIf PassLine wins Then If cs3.pressed Then cs1.currentstep = 0 : cs3.pressed = false : Show message "Starting progression over." : GoTo "Make bets" Else Bet last PassLine * 2 on PassLine : cs3.pressed = true : GoTo "End" EndIf EndIf : "Make bets" : If cs1.currentstep is less than 3 Then Bet cs0.unit on PassLine ElseIf cs1.currentstep = 3 Or cs1.currentstep = 4 Then Bet cs0.unit * 2 on PassLine ElseIf cs1.currentstep = 5 Or cs1.currentstep = 6 Then Bet cs0.unit * 4 on PassLine ElseIf cs1.currentstep = 7 Or cs1.currentstep = 8 Then Bet cs0.unit * 8 on PassLine EndIf : "End" :