' This system requires a table offering 100x odds ' Ensure 100x odds and max odds bet of $1000 set on configuration screen ' $10 flat bets are made on the Passline. Odds begin at $25. ' Wins on odds are parlayed until an odds bet of $1000 or more is won, then new session If initializing script Then name cs1.odds as "Amount to bet on odds" : name cs2.consecutive.wins as "Current number of consecutive odds bets won" : name cs3.total.wins1000 as "Number of times odds won at $1000 level" : name cs4.cumulative.wins1000 as "Cumulative number of odds wins to reach $1000 level" : name cs5.avg.wins.towin1000 as "Average number of consecutive wins per win at $1000 level" : name cs6.total.attempts = "Total number of attempts started from $25 odds" : name cs7.avg.attempts.win1000 = "Average number of attempts per win at $1000 level" : name cs10.total.sessions as "Number of sessions started" : name cs11.avg.wins.session as "Average number of $1000 odds wins per session" : name cs12.avg.attempts.session as "Average number of attempts per session" : name cs13.avg.rolls.session as "Average number of rolls per session" : name cs14.avg.hrs.session as "Average number of hours per session" EndIf If beginning new session Then add 1 to cs10.total.sessions : bankroll = 500 EndIf If bankroll < minimum bet Then start new session(preserve checkstacks) EndIf If comeout roll Then bet $10 on passline EndIf If passlineodds win Then add 1 to cs2.consecutive.wins If last roll passlineodds wager >= 1000 Then add 1 to cs3.total.wins1000 : add cs2.consecutive.wins to cs4.cumulative.wins1000 : cs5.avg.wins.towin1000 = cs4.cumulative.wins1000 / cs3.total.wins1000 : cs11.avg.wins.session = cs3.total.wins1000 / cs10.total.sessions : cs7.avg.attempts.win1000 = cs6.total.attempts / cs3.total.wins1000 : cs12.avg.attempts.session = cs6.total.attempts / cs10.total.sessions : start new session(preserve checkstacks) Else cs1.odds = last passlineodds win + last passlineodds wager EndIf ElseIf passlineodds lose Or # of rolls = 0 Then cs7.avg.attempts.win1000 = cs6.total.attempts / cs3.total.wins1000 : cs12.avg.attempts.session = cs6.total.attempts / cs10.total.sessions : cs1.odds = 25 : cs2.consecutive.wins = 0 : add 1 to cs6.total.attempts : EndIf If point And last roll was a comeout roll Then bet cs1.odds on passlineodds EndIf cs13.avg.rolls.session = # of rolls all sessions / cs10.total.sessions : cs14.avg.hrs.session = cs13.avg.rolls.session / rolls per hour