WinCraps AutoBets, Data Format 5.0 ZEnd p( ' This script records passes and misses to a text file which can be read by any c' This script records passes and misses to a text file which can be read by any ' word processor or spreadsheet program. c' word processor or spreadsheet program. ' Consecutive passes or misses are recorded on the same line thus c' Consecutive passes or misses are recorded on the same line thus ' creating a graph effect. c' creating a graph effect. ' Pass-7, Pass-11 are passes due to naturals on the comeout roll c' Pass-7, Pass-11 are passes due to naturals on the comeout roll ' Pass-4 is a pass on point 4, Pass-5 is a pass on point 5, etc. c' Pass-4 is a pass on point 4, Pass-5 is a pass on point 5, etc. ' Miss-2, Miss-3, & Miss-12 are misses due to craps on the comeout roll c' Miss-2, Miss-3, & Miss-12 are misses due to craps on the comeout roll ' Miss-4 is a miss on point 4 (7-out), Miss-5 is a miss on point 5 (7-out), etc c' Miss-4 is a miss on point 4 (7-out), Miss-5 is a miss on point 5 (7-out), etc ' Shooters are separated by two dashes "--" c' Shooters are separated by two dashes "--" When . . .  Initializing Auto-Bet  <F then . . . Open/append file for output: "shoot1 results.txt" cshoot1 results.txt When . . .  On each pass  ¤D then . . . Go to "Pass" uPass When . . .  On each miss  €¤D then . . . Go to "Miss" uMiss Do this . . . Go to "End" uEnd Pass ZPass While . . .  Chip-Stack # 1 is named "Miss" Miss ÈD then . . . Output to file. New line. f When . . .  Last roll was a come-out roll  À¢D Any 7 has rolled each time  àúD then . . . Output to file. Message: "Pass-7" dPass-7 When . . .  Last roll was a come-out roll  À¢D Number 11 (5-6) or (6-5) has rolled each time  `ûD then . . . Output to file. Message: "Pass-11" dPass-11 When . . .  A point is decided "for" the number 4 " £D then . . . Output to file. Message: "Pass-4" dPass-4 When . . .  A point is decided "for" the number 5 # £D then . . . Output to file. Message: "Pass-5" dPass-5 When . . .  A point is decided "for" the number 6 $ £D then . . . Output to file. Message: "Pass-6" dPass-6 When . . .  A point is decided "for" the number 8 & £D then . . . Output to file. Message: "Pass-8" dPass-8 When . . .  A point is decided "for" the number 9 ' £D then . . . Output to file. Message: "Pass-9" dPass-9 When . . .  A point is decided "for" the number 10 ( £D then . . . Output to file. Message: "Pass-10" dPass-10 Do this . . . Name Chip-Stack # 1 as "Pass" WPass  Go to "End" uEnd Miss ZMiss While . . .  Chip-Stack # 1 is named "Pass" Pass ÈD then . . . Output to file. New line. f When . . .  Last roll was a come-out roll  À¢D Number 2 (1-1) has rolled each time  @úD then . . . Output to file. Message: "Miss-2" dMiss-2 When . . .  Last roll was a come-out roll  À¢D Number 3 (1-2) or (2-1) has rolled each time  `úD then . . . Output to file. Message: "Miss-3" dMiss-3 When . . .  Last roll was a come-out roll  À¢D Number 12 (6-6) has rolled each time  €ûD then . . . Output to file. Message: "Miss-12" dMiss-12 When . . .  A point is decided "against" the number 4 " £D then . . . Output to file. Message: "Miss-4" dMiss-4 When . . .  A point is decided "against" the number 5 # £D then . . . Output to file. Message: "Miss-5" dMiss-5 When . . .  A point is decided "against" the number 6 $ £D then . . . Output to file. Message: "Miss-6" dMiss-6 When . . .  A point is decided "against" the number 8 & £D then . . . Output to file. Message: "Miss-8" dMiss-8 When . . .  A point is decided "against" the number 9 ' £D then . . . Output to file. Message: "Miss-9" dMiss-9 When . . .  A point is decided "against" the number 10 ( £D then . . . Output to file. Message: "Miss-10" dMiss-10 Do this . . . Name Chip-Stack # 1 as "Miss" WMiss  When . . .  A point is decided "against" any number  £D then . . . Output to file. New line. f Output to file. Message: "--" d-- Output to file. New line. f Name Chip-Stack # 1 as "New Shooter" WNew Shooter  End ZEnd