dicebot script

in dicebot •  3 years ago 

This is a script I wrote based off of "the cure". Its for much lower balances and has a safer recovery system. Use at 0.00100000 minimum balance. It creates more profit than "the cure" in a much smaller amount of time.

0ver/Under streakbreaker

chance = 35.5
base = 0.0000000051 --<<<<---set basebet
nextbet = base
losecount = 0
target = balance + balance/2
bethigh = true
sr = 0

function dobet()

if balance > target then stop() end

if sr >= 10 then
    resetseed()
    sr = 0
    print "reset seed"
end

if win then
    nextbet   = base
    chance    = 35.5
    losecount = 0
    sr        = 0
else
    bethigh = !bethigh
    sr+=1
    nextbet = previousbet*2
    losecount+=1
    print "  "
    print "------------------------------------"
    print (balance)
    print "------------------------------------"        
end       

if ( losecount >= 1) then
nextbet = previousbet1.82
chance = 35.5
end
if ( losecount >= 2) then
nextbet = previousbet
1.76
chance = 25.5
end
if ( losecount >= 3) then
nextbet = previousbet1.62
chance = 15.5
end
if ( losecount >= 4) then
nextbet = previousbet
1.78
chance = 27.5
end
if ( losecount >= 5) then
nextbet = previousbet1.88
chance = 37.5
end
if ( losecount >= 6) then
nextbet = previousbet
1.98
chance = 41.3
end
if ( losecount >= 7) then
nextbet = previousbet*2.15
chance = 48.7
end
if ( losecount >= 8) then

nextbet = previousbet*3.25
chance  = 52.5

end
if ( losecount >= 9) then
nextbet = previousbet1.95
chance = 27.5
end
if ( losecount >= 10) then
nextbet = previousbet
3.45
chance = 57.5
end
if ( losecount >= 11) then
nextbet = previousbet*5.55
chance = 72.5
end

end
end

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!