Jumat, 02 Oktober 2020

999dice - dynamic basebet


 

Script basebet dinamis, menyesuaikan dengan streak loss dan streak win. 


Kalau berkenan referal
https://www.999doge.com/?335341790

DiceBot 3.4.11
https://bot.seuntjie.com/Downloads.aspx

Source Code
https://github.com/seuntjie900/DiceBot

Script
https://dicekode.blogspot.com/2020/10/999dice-script.html

Youtube
https://www.youtube.com/channel/UC-BpueviNmn12aV_pBRY3gQ/


--- script ---


base          = balance / 100000
maxloss       = -10
setloss       = 3
setwin        = 4
stopbalance   = balance * 0.5
targetbalance = balance * 1.5
chance        = 65
ifwin         = 1.512345
ifloss        = 1.621345
c1            = 64.542154
c2            = 65.245143
ip            = 0.00000001
justloss      = 0
justwin       = 0
profit1       = 0
stopwin       = false
stopnow       = false
rebet         = true
baseDB        = base
nextbet       = base
resetstats()

function dobet()

    chance = math.random(c1*100,c2*100)/100
    
    if win then
        justwin += 1
        justloss = 0
        if stopnow then stop() end
        if (profit > profit1+ ip) then
            if stopwin then stop() end
            profit1 = profit
            nextbet = base
        else
            nextbet = previousbet * ifwin
        end
    else
        justloss += 1
        justwin = 0
        nextbet = previousbet * ifloss
    end
    
    nowprofit = profit / (balance - profit) * 100
    
    print("\n\n")
    print("base "..base)
    print("bet L/W "..justloss.."/"..justwin)
    print("profit : "..string.format("%.2f",nowprofit).."%")
    
    if currentstreak <= maxloss then 
        if rebet then
            base = baseDB / 1000
        else 
            stopwin = true  
        end 
    end
    
    if balance < stopbalance then stopnow = true end
    if balance > targetbalance then stop() end
    if (justloss == setloss) then base *= 0.1 end
    if (justwin == setwin) then base = baseDB end
end

Related Posts:

  • 999dice - fixed basebet until minimum chanceScript dengan fix basebet hanya merubah chance, sampai dengan chance minimal (chmin) Kalau berkenan referalhttps://www.999doge.com/?335341790DiceBot 3.4.11https://bot.seuntjie.com/Downloads.aspxSource Codehttps://github.… Read More
  • 999dice - fixed basebet, increased per span loss Script dengan fix basebet per span loss, aman untuk balance kecil dan long bet timeKalau berkenan referalhttps://www.999doge.com/?335341790DiceBot 3.4.11https://bot.seuntjie.com/Downloads.aspxSource Codehttps://github.c… Read More
  • 999dice - progression fishing method  Dual chance dengan menggunakan progresi sesuai table, medium risk - high gain Kalau berkenan referal https://www.999doge.com/?335341790 DiceBot 3.4.… Read More
  • 999dice - saving basebet for streakwin Script basebet menyesuaikan balance, minus dari streak loss di simpan, dan di bet saat streak win ke 2Kalau berkenan referalhttps://www.999doge.com/?335341790DiceBot 3.4.11https://bot.seuntjie.com/Downloads.aspxSource C… Read More
  • Tutorial - How to use seutjie dicebotDownload bot dari link ini:https://bot.seuntjie.com/Downloads.aspxAnda telah mempunyai script.Masuk ke akun anda menggunakan Dicebot.Ubah setingan mode Dicebot menjadi Programmer  (di tampilan bagian atas Dicebot ) … Read More

1 komentar: