pent
pent
  • Threads: 1
  • Posts: 2
Joined: Apr 23, 2019
April 23rd, 2019 at 9:54:38 AM permalink
Can anyone help me with a WinCraps(Classic) auto bet script? It should be pretty easy. I want to bet $5 on the don't pass, and after a point is established, lay full odds. UNLESS, the point is 6 or 8, then no odds. It's the last bit I can't seem to get. I've tried xor while and or while.


Make Bets
While . . .
Next roll is a Come-out roll
Don't Pass is equal to $ 0
then . . .
Bet $ 5 on Don't Pass
While . . .
Next roll is NOT a come-out roll
then . . .
Set Auto-Lay Full Odds to True
While . . .
Next roll is NOT a come-out roll
A point is established on the number 6
xor while . . .
A point is established on the number 8
then . . .
Set Auto-Lay Full Odds to False
End
7craps
7craps
  • Threads: 18
  • Posts: 1977
Joined: Jan 23, 2010
Thanked by
pent
April 23rd, 2019 at 10:38:43 AM permalink
Quote: pent

Can anyone help me with a WinCraps(Classic) auto bet script?

Here is what I have. you do know the difference between While and When?
They can behave differently. (i sometimes forget what they do)

You can use 'options' in the auto-bet page and 'select show steps' to have WinCraps step you through the code as dice are rolled or better as you roll the dice to test
 When . . .
Initializing Auto-Bet
then . . .
Bet $ 5 on Don't Pass
Set Auto-Lay Full Odds to True
Go to "End"
' point 6or8 NO lay odds
When . . .
A point is established on the number 6 or 8
then . . .
Bet $ 0 on Don't Pass Odds
'make bets
While . . .
Next roll is a come-out roll
Don't Pass is equal to $ 0
then . . .
Bet $ 5 on Don't Pass
End

good luck
hope this help out
Last edited by: 7craps on Apr 23, 2019
winsome johnny (not Win some johnny)
DeMango
DeMango
  • Threads: 36
  • Posts: 2958
Joined: Feb 2, 2010
April 23rd, 2019 at 4:05:40 PM permalink
How about a Dummies book on programming Win Craps? I don’t want to hear about scripts already written. Name your price!
When a rock is thrown into a pack of dogs, the one that yells the loudest is the one who got hit.
7craps
7craps
  • Threads: 18
  • Posts: 1977
Joined: Jan 23, 2010
April 23rd, 2019 at 4:21:05 PM permalink
Quote: DeMango

How about a Dummies book on programming Win Craps? I don’t want to hear about scripts already written. Name your price!

I think that has been mentioned before here.

I remember the help section had some pointers on what to do and not to do and a few examples.
I have not looked at that in years.

The OP code has the program always looking and doing something, and that, as it may work, slows down the code. some like it that way.
I was not going to say what is wrong with his code, because we all can code the same thing differently, but he should read the help section and maybe contact Steen (Steen may show) as Steen is really good at explaining this stuff.
winsome johnny (not Win some johnny)
pent
pent
  • Threads: 1
  • Posts: 2
Joined: Apr 23, 2019
April 24th, 2019 at 6:02:05 AM permalink
Terrific! Thanks a lot!
  • Jump to: