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
EmoticonEmoticon