'As described by Hawaii Craps Shooters at: 'https://www.youtube.com/watch?v=8zpnOvrEjPE 'Goals '1 Qualify shooter '2 Build foundation '3 Transition darkside to lightside 'Basic outlay per cycle $240 ' $120 DontPass ' $10 each on Hop16, Hop25, Hop34, Eleven ' $2 on Twelve ' Remaining $78 hold until established on point then ' do iron cross (partial until a win allows completion) ' After $120 won, transition to $10 place bets across, ' remove all other bets except established DP, ' press one unit for each place bet win If Beginning new session Then autohandle winning bets = "Same bet" : autohandle losing bets = "No bet" : beginning bankroll = 1000 : EndIf If bankroll < 240 Or bankroll >= beginning bankroll * 1.2 Then start new session EndIf If comeout roll Then remove all(bets) : bet 120 on dontpass : bet 10 on hop16, hop25, hop34, eleven : bet 2 on twelve : cs2.wincycle = 0 : cs3.transition = false Else If last roll was a comeout roll Then If point = 6 Then bet 25 on place5 : bet 30 on place8 : bet $8 on Hard6 ElseIf point = 8 Then bet 25 on place5 : bet 30 on place6 : bet $8 on Hard8 Else bet 30 on place6, place8 : bet 1 on hop14, hop23 EndIf bet 15 on field Else cs1.winroll = sum(last roll $ bets won) : add cs1.winroll to cs2.wincycle : If cs2.wincycle >= 120 Then If cs3.transition Then If any(place bets win) Then add 5 to place(dice total) EndIf Else bet 10 on all(place bets) : remove place(point), field, hard6, hard8 : If point = 4 Then bet 25 on hard4 EndIf If point = 10 Then bet 25 on hard10 EndIf cs3.transition = true EndIf Else bet 15 on field If place5 < 25 Then add cs1.winroll to place5 If place5 > 25 Then bet 25 on place5 EndIf ElseIf hard6 > 0 Then add cs1.roll to hard6 If hard6 > 16 Then hard6 = 16 EndIf ElseIf hard8 > 0 Then add cs1.roll to hard8 If hard8 > 16 Then hard8 = 16 EndIf EndIf EndIf EndIf EndIf