' A dark-side strategy that transitions to a light-side strategy ' as described by Hawaii Craps Shooters at: ' https://www.youtube.com/watch?v=lRs57QmMFEs ' As seen in WinCraps video at: ' https://www.youtube.com/watch?v=qrp-jzXbTRE If Initializing script Then autolay full odds = false : autohandle winning bets = "same bet" EndIf If Beginning new session Then beginning bankroll = 1000 : cs1.step = 1 EndIf If bankroll < 450 Or bankroll >= beginning bankroll * 1.2 Then start new session EndIf If seven out Then cs1.step = 1 EndIf If cs1.step = 1 Then If comeout roll Then bet $150 on dontpass, lay4, lay10 : cs2.hits = 0 ElseIf dontpass > 0 Then cs1.step = 2 ' a point is established EndIf EndIf If cs1.step = 2 Then bet $25 on inside place bets : remove place(point), lay4, lay10 If point = any(5, 6, 8, 9) Then bet $5 on hard4, hard10 : bet $15 on hard(point) ElseIf point = any(4, 10) Then bet $230 on dontpassodds : bet $5 on hard(14 - point) ' sister number EndIf cs1.step = 3 ElseIf cs1.step = 3 Then If any(place bets win, hard bets win) Then add 1 on cs2.hits EndIf If cs2.hits = 2 Then bet $15 on inside place bets : remove dontpassodds, hard6, hard8 : bet $2 on hard4, hard10 If point = any(5, 6, 8, 9) Then bet $150 on place(point) ' Lightswitch! EndIf cs1.step = 4 EndIf ElseIf cs1.step = 4 Then If a point is decided Then place(last point) = last $ place(last point) won - last $ dontpass : cs1.step = 5 EndIf EndIf