' 3-tier progression using Don't Pass ' If shooter makes 3 passes, then stop betting until shooter 7's out ' Bet in 3 tiers of $10/$20/$30 , $30/$60/$90 , $90/$180/$270 If Initializing script Then Name cs1.numlosses as "Number of Don't Pass losses in current progression" : Name cs2.completelosses as "Number of times complete progression is lost" : cs3.makebets = True EndIf If cs3.makebets = False Then If Seven out Then cs3.makebets = True : Show message "Turning betting back on again." Else GoTo "End" EndIf EndIf If DontPass resolves Then If DontPass wins Then cs1.numlosses = 0 : Show message "Starting progression over!" ElseIf DontPass loses Then Add 1 on cs1.numlosses EndIf If cs1.numlosses = 3 Or cs1.numlosses = 6 Then cs3.makebets = False : Show message "That's 3 losses on this Shooter." & cr & "Betting will stop now until this Shooter 7's out." & cr & "Then betting will continue on the next tier." : GoTo "End" EndIf If cs1.numlosses = 9 Then cs3.makebets = False : Show message "That's 3 losses on this Shooter." & cr & "Betting will stop now until this Shooter 7's out." & cr & "Then since this is the end of the third tier," & cr & "the progression will start over." : cs1.numlosses = 0 : Add 1 on cs2.completelosses EndIf EndIf : "Make Bets" : If Next roll is a comeout roll And cs3.makebets is true Then : "1st tier bets" : If cs1.numlosses is equal to 0 Then Bet $10 on DontPass ElseIf cs1.numlosses is equal to 1 Then Bet $20 on DontPass ElseIf cs1.numlosses is equal to 2 Then Bet $30 on DontPass EndIf : "2nd tier bets" : If cs1.numlosses is equal to 3 Then Bet $30 on DontPass ElseIf cs1.numlosses is equal to 4 Then Bet $60 on DontPass ElseIf cs1.numlosses is equal to 5 Then Bet $90 on DontPass EndIf : "3rd tier bets" : If cs1.numlosses is equal to 6 Then Bet $90 on DontPass ElseIf cs1.numlosses is equal to 7 Then Bet $180 on DontPass ElseIf cs1.numlosses is equal to 8 Then Bet $270 on DontPass EndIf EndIf : "End" :