If initializing script Then clear all(checkstacks) : clear all(checkstacknames) : csn1 = "The count" : csn2 = "Flat bet amount" : csn3 = "Max number of bets at any one time" : autotake full odds = true : show message "The 5 count qualified shooter system" & cr & cr & "This system makes Passline and/or Come bets with odds after the shooter has made 5 qualifying rolls." & cr & cr & "To qualify, the count must begin and end on a roll of 4,5,6,8,9,or 10." & cr & cr & "Counts 2 thru 4 can be any number except a 7-out which stops the count and resets the system." : cs2.betamount = input( "How much would you like to flat bet on each Passline or Come wager?") : cs3.maxnumbets = input( "What's the maximum number of flat bets you'd like to see on the table at any time?" & cr & cr & "For example, a max of 2 could be one passline plus one come bet OR two come bets.") ElseIf cs1.count = 0 Then If dice total = any(4, 5, 6, 8, 9, 10) Then cs1.count = 1 : show message "The count is active now." EndIf ElseIf cs1.count > 0 Then If cs1.count is less than 4 Or dice total = any(4, 5, 6, 8, 9, 10) Then add 1 on cs1.count If cs1.count = 5 Then show message "That's the 5th count. Betting will start now." EndIf EndIf If a point is decided AGAINST any(4, 5, 6, 8, 9, 10) Then cs1.count = 0 : show message "That's a 7-out. The count is now reset and inactive." ElseIf any(come bets lost) Then cs1.count = 0 : show message "That's a loss so the count is now reset and inactive." EndIf EndIf If cs1.count >= 5 Then If count(PassLine, Come bets) < cs3.maxnumbets Then If a point is established Then Bet cs2.betamount on Come Else Bet cs2.betamount on PassLine EndIf EndIf EndIf