Dopebot dice script

in #dice3 years ago
Authored by @@dopeshot

Dopeshot's dope dicebot script.

Something I wrote to bring a low (~100000) Satoshi balance to 0.01.




Dopescript (0ver\/nder) streakbreaker


chance    = 35.5
base      = 0.00000001 --<<<<-set basebet
nextbet   = base
losecount = 0
target    = balance + balance/2
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 = previousbet*1.82
    chance  = 35.5
end
if ( losecount >= 2) then
    nextbet = previousbet*1.76
    chance  = 25.5
end
if ( losecount >= 3) then
    nextbet = previousbet*1.62
    chance  = 15.5
end
if ( losecount >= 4) then
    nextbet = previousbet*1.78
    chance  = 27.5
end
if ( losecount >= 5) then
    nextbet = previousbet*1.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 = previousbet*1.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

Donate btc 1KejwNn9szDrjBvW2xXPuKB3YU2U8FC56G

‐-------------------------------------

**Dicebot scripts are potentially able to cost your entire balance very quickly.  Use at your own risk.