Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
zororaka
on 13/12/2020, 06:20:21 UTC
(For 999dice) Run Bot, You Sleep. Stable program and low balance (minimum 1000 Doge)

Code:
resetseed()
resetstats()

chance        = math.random(15, 49)
basebet       = 0.00001 -- this recomendeed for low balance. If dogecoin more than 10k Doge, set basebet up to 0.0001 Doge
nextbet       = basebet
varmaxbet     = 2 -- set max bet 10 Doge for low balance. If dogecoin more than 10k, set maxbet up to 100 Doge
vartarget     = 10000 -- edit your target total profit
varstoploss   = 5000 -- edit your stop loss
varmaxrollwin = 2
varrollwin    = 1
multwin       = 1
multlose      = 1.4
varbetlose    = math.random(0, 1)

function dobet()
    chance  = math.random(15, 49)
    varbetlose    = math.random(0, 1)
    if (varbetlose == 0) then
        bethigh = true
    else
        bethigh = false
    end
    if (balance >= vartarget) then
        stop();
        print("target success")
    end
    if (balance <= varstoploss) then
        stop();
        print("stoploss")
    end
    if (win) then
        if (varrollwin >= varmaxrollwin) then
            nextbet = basebet
            varrollwin = 1
        else
            varrollwin = varrollwin + 1
            nextbet = nextbet * multwin
        end
    else
        if (nextbet >= varmaxbet) then
            nextbet = basebet
            varrollwin = 1
        else
            nextbet = nextbet * multlose
        end
    end
end
[code]
[/code]