Author

Topic: Need help with custom betting strategy (Read 212 times)

newbie
Activity: 11
Merit: 0
April 14, 2016, 12:11:53 PM
#3
It's a custom one I think. If you click view script then you can get the idea of how it's written.
https://bot.seuntjie.com/scripts.aspx?id=12[/url]
full member
Activity: 124
Merit: 100
April 14, 2016, 11:09:12 AM
#2
What program language do you need it in?
newbie
Activity: 11
Merit: 0
April 14, 2016, 10:33:22 AM
#1
I want to make a strategy that bets 0 untill 3 losses and then bets 0.00001. If win or loss then return to 0 but if loss then increase the 0.000001 * 2

If anyone knows how to do this then please let me know Smiley
Code:
chance= 47.5
base=0.0000000
test=0.00001
bethigh = true
function dobet()
if win then
base=0.0000000
nextbet = base
end
if lose then
if(first and !done)then
base=0.0000000nextbet = base
end
if(second and !done)then
base=0.0000000
nextbet = base
end
if(third and !done)then
nextbet = test
end
if(forth and !done)then
base=0.0000000
nextbet = base
test = test * 2
end
end
end
Jump to: