thank you for the help. I managed to figure it out on my own and the script does just what I want. Here it is to anyone who is interested.
chance=49.5
basebet=0.00000001
nextbet=basebet
resetseed()
lossCounter=0
function dobet()
if win then
nextbet=previousbet
if lossCounter >= 10 then
nextbet=basebet
lossCounter=0
end
else
lossCounter=lossCounter+1
nextbet=previousbet*2
end
end
Thanks!
You can make significant profits with this script if you set the lossCounter <= to a bigger number. But the risk/reward is a big one.
If you set it to 15 you will be seeing about $100/hour but open yourself up to losing it all on a 10+ losing streak. You also have to have a bigger bank roll to do that. .3 btc minimum but even that can we wiped clean. 10-12 is very safe even with .1 btc, with 12 bringing in around $100-150/24 hours.