999doge - fixed basebet until minimum chance

 

Script dengan fix basebet hanya merubah chance, sampai dengan chance minimal (chmin) 


Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

basebet = 0.0001 * balance
edge    = 1
basetry = 0.2
target  = 10 -- in percent
marti   = 1
spin    = 0
minus   = 0
profits = 0
los     = 0
losdb   = 9
chmin   = 13.5
chance  = (100-edge)/(basetry + 1)
stopwin = false
bethigh = false
nextbet = basebet
try     = basetry

resetstats()
function dobet()
    spin += 1
    profits += currentprofit
    profitnow = profit / (balance - profit) * 100
    if profitnow > target then
        stop()  
        print("\n\nTARGET "..target.."%\n\n")      
    end
    
    if lastBet.roll < 50 then      
        bethigh = true     
    else     
        bethigh = false       
    end        

    if win then
        if stopwin then stop() end
    end
    if win then
        los     = 0
        marti   = 1
        minus   = 0
        try     = math.random(10,30)/100
        nextbet = basebet + (math.random(0,9999)/1000000000)
    else
        if (chance == chmin) then
            los+=1
            marti = 1.35 
        end
        minus   = try
        try     = minus + (math.random(20,30)/10)
        nextbet = (previousbet * marti) - (math.random(0,9999)/100000000000)
    end
    chance = (100-edge)/(try + 1)
    
    if los > 5 then try = 1 end
    if los > losdb then losdb = los end    
    if chance > 95 then chance = 95 end
    if chance < chmin then chance = chmin end
    if currentstreak < -50 then stopwin = true end
    
    print("")
    print("spin "..spin.."   ( "..string.format("%.2f",profitnow).."% )") 
    print("profits : "..profits)
    print("minus : "..minus)
    print("try : "..try)  
    print("los : "..los.."/"..losdb) 
    print("chance : "..chance) 
end 


     

999doge - fixed basebet, increased per span loss

 

Script dengan fix basebet per span loss, aman untuk balance kecil dan long bet time


Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

basebet               = 0.00100
basechance            = 90
increasebetEveryLosts = 15 
increasebetBy         = 2
-------------------------------------
chance  = basechance
nextbet = basebet 
co      = (1/basechance)*99
cco     = co
lc1     = 0
lc2     = 0
pp      = 0
sbr     = balance
negs    = 0
lvl     = 1
lvl2    = lvl
bethigh = true
stopwin = false
-------------------------------------
function dobet()
    if win then
        if stopwin then stop() end
        nextbet = basebet
        chance  = basechance
        cco     = co
        lc1     = 0
        lc2     = 0
        lvl     = 1
        sbr     = balance
    else
        negs=sbr-balance
        lc1+=1
        lc2+=1
        pp = basebet*(lc1*(co-1))
        if lc2>=increasebetEveryLosts then
            lvl += 1
            nextbet*=increasebetBy
            cco = ((negs+pp)/nextbet)+1 
            lc2 = 0
        else
            cco+=co
        end
        chance=(1/cco)*99
    end
    if chance < 5 then chance = 5 end
    if lvl > lvl2 then lvl2 = lvl end
    print("\n\n")
    print("count "..lc2.."/"..increasebetEveryLosts)
    print("level "..lvl.."/"..lvl2)
    print("bet "..nextbet)
end 

999doge - progression fishing method

 

Dual chance dengan menggunakan progresi sesuai table, medium risk - high gain



-- sequenza
progresi          = {2, 3, 4, 5, 7, 9, 12, 16, 21, 32, 47, 67}
progressionIndex  = 1 
progressionWinned = 0
phase             = 1 
maxPhase          = 1
phaseStart        = 1
go                = true

-- starting setup
div     = 100000 
base    = balance/div
target  = 1000
SL      = balance * 0.8
nextbet = progresi[progressionIndex] * base

-- chances
chance      = math.random(8000,8500)/100 
bigchance   = math.random(7500,8500)/100
smallchance = 100 - bigchance

-- multipliers
multi = 1.10 
a     = progresi[progressionIndex] * base

-- counters
lossCounter = 0
winCounter  = 0 

-- brake
brakeamount = 0
brakecount  = 0
brake       = false
useBrake    = true

function BrakeBet()
    if useBrake then
        brake       = true  
        brakeamount = math.random(5,10) 
    end
end 

function ResetProgresi()
    phase            = 1 
    maxPhase         = 1
    phaseStart       = 1
    chance           = bigchance
    progressionIndex = 1
    base             = balance/div
    SL               = balance * 0.8
    BrakeBet()
    resetseed ()
end 

function SetPhase(index)
    local newPhase = GetPhaseFromIndex (index) 
    if(newPhase > maxPhase) then 
        maxPhase = newPhase 
    end 
    if(maxPhase == 3) then 
        phaseStart = 2 
    elseif(maxPhase == 4) then 
        phaseStart = 3 
    elseif(maxPhase == 5) then 
        phaseStart = 4 
    end 
    phase = newPhase 
end

function GetPhaseFromIndex (index)
    if(index < 7) then 
        return 1 
    elseif(index < 10) then 
        return 2 
    elseif(index < 11) then
        return 3 
    elseif(index < 12) then
        return 4 
    elseif(index < 13) then
        return 5 
    end 
end 

function ProcessWin ()

    lossCounter = 0
    winCounter += 1

    if (go) then
        go        = false
        a         = progresi[progressionIndex] * base 
        bigchance = math.random(7500,8500)/100
        chance    = bigchance
        mukti     = 1
    else 
        if(progresi[progressionIndex] == 67) then 
            progressionWinned += 1 
            ResetProgresi()
        else 
            if winCounter > 1 then 
                progressionIndex += 1 
                SetPhase(progressionIndex)
            end 
        end
    end

end

function ProcessLoss ()

    if  lossCounter == 0 then
        bethigh     = !bethigh
        chance      = smallchance
        smallchance = 110 - bigchance
        if smallchance < 30 then 
            multi = 1.43568 
        end 
        if smallchance >= 30 then 
            multi = 1.6365 
        end 
        go = true
    end
    lossCounter += 1
    winCounter = 0
    nextbet    = previousbet*multi 
end

function dobet () 

    print ("\n\n")
    print ("fase # "..phase)
    print ("target # "..target)
    print ("stoploss # "..SL)
    if balance > target or balance < SL then
        print ("Target archived!")
        stop ()
    end

    if !brake then

        if (win) then
            ProcessWin ()
            nextbet = progresi[progressionIndex] * base
        else 
            ProcessLoss ()
        end
        
        if (lossCounter > 1) then
            go = true
        end 

        if (lossCounter == 1) then
            chance  = smallchance
            nextbet = a * multi 
            go      = true
        end

        if (lossCounter == 5) then
            lossCounter = 0 
            a           = previousbet
            chance      = bigchance
            BrakeBet()
            go = false

            if (phase == 1) then
                progressionIndex = phaseStart 
            elseif (phase >= 2) then
                progressionIndex -= 2 
                SetPhase(progressionIndex)
            end
        end

        print ("progression # "..progressionWinned)
    else
        
        brakecount += 1
        nextbet = 0
        print ("brake # "..brakecount.."/"..brakeamount)
        
        if (brakecount == brakeamount) then
            brakecount = 0
            brake      = false
        end
        
    end

end


Gambling is gambling no matter what you do or how good your strategy is. The house always wins if you keep playing. 


Tutorial - How to use seutjie dicebot

Download bot dari link ini:



  1. Anda telah mempunyai script.

  2. Masuk ke akun anda menggunakan Dicebot.

  3. Ubah setingan mode Dicebot menjadi Programmer 

    (di tampilan bagian atas Dicebot ) 

  4. Copy script yang anda punya dan masukkan/paste di bagian kanan atas pada bagian code 


     

    (kosongkan kolom sebelum anda memasukkan scrip anda)

  5. Memulai dengan menggunakanan tombol "start" dan menghentikan dengan tombol "stop" pada kolom paling bawah kanan

Kategori

2captcha

Kategori