Thread Rating:
The Help section can step you through the auto-bet process.Quote: diamondfreddyI simply want to make a file that can wait for three non-consecutive field numbers and then bet $5 and doubling it until winning.
I cant figure it out,
Just to learn the basics.
There is a lot to it and also how to set up WC to run high speed simulations.
You did not say which version you have.
5.1b or Pro
I added both below
5.1b you have to make yourself
Pro, just copy and paste
They are as basic as you can get.
I do more to them, using bankroll, stopping points and input values
but that would be too much for you until
you get the hang of what is going on
Hope this helps
You have to make this yourself by clicking away
the
'make first bet
is a comment from using Label
When . . .
Initializing Auto-Bet
then . . .
Name Chip-Stack # 1 as "non-field current count"
Bet $ 0 on Chip-Stack # 1
Go to "end"
While . . .
Number 2,3,4,9,10,11,or 12 has rolled each time
then . . .
Bet $ 0 on Chip-Stack # 1
Bet $ 0 on Field
Go to "end"
While . . .
Number 2,3,4,9,10,11,or 12 has not rolled each time
then . . .
Add $ 1 to Chip-Stack # 1
'make first bet
While . . .
Chip-Stack # 1 is equal to $ 3
then . . .
Bet $ 5 on Field
'double up next bet on field
While . . .
Chip-Stack # 1 is greater than $ 3
then . . .
Bet 200 % of the last Field on Field
end
WinCraps Pro (copy and paste into auto-bet window (F4) and save it)
If
Initializing script
Then
Name CheckStack1 as "non-field current count" :
Bet $0 on CheckStack1 :
GoTo "end"
EndIf
If
Dice total = any(2, 3, 4, 9, 10, 11, 12)
Then
Bet $0 on CheckStack1 :
Bet $0 on Field :
GoTo "end"
EndIf
If
Dice total = any(2, 3, 4, 9, 10, 11, 12) <> dice total
Then
Add $1 to CheckStack1
EndIf
'make first bet
If
CheckStack1 is equal to $3
Then
Bet $5 on Field
EndIf
'double up next bet on field
If
CheckStack1 is greater than $3
Then
Bet 200% of the last Field on Field
EndIf
: "end" :
Good Luck
Quote: heavySteen has a new version of WinCraps out - WinCraps Pro - that simplifies script writing quite a bit. Also, he had quite a few roll files and betting strategies already coded and available on his website.
I have been using Wincraps for a long time but didn't know about this new version! I will have to check it out. I am surprised CloudCity didn't send an email to his registered users. Maybe he did and it was filed in spam :)
You can have multiple players, all playing different strategies, playing at the same time.
This makes comparing different schemes a snap.
I know the autobet coding has gotten easier, but I have not played around with it much. I know Steen allows for logic Loops now, which is much easier to code.
Quote: RaleighCrapsI was playing with the betas for a bit.
You can have multiple players, all playing different strategies, playing at the same time.
This makes comparing different schemes a snap.
I know the autobet coding has gotten easier, but I have not played around with it much. I know Steen allows for logic Loops now, which is much easier to code.
I picked up the upgrade, the coding is a lot easier, mainly because you can directly type in changes and not have to use the little menus. Some things are gone, like flags, or at least I can't find them any more. But you can work around that with chipstacks, which is more uniform anyway.
Quote: heavySteen has a new version of WinCraps out - WinCraps Pro - that simplifies script writing quite a bit. Also, he had quite a few roll files and betting strategies already coded and available on his website.
He needs a Mac version. I don't have windows on my bootcamp partition anymore. :(