Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ••• upgrade gateway versi WDB - # @duinobet -
- targetProfit = 50 -- ( Amt )
- limiteLose = 5 -- ( % )
- resetSeed = 250
- bethigh = true
- --resetall()
- basebet = 0.0000001
- prebet = 0.00000001
- ifProfit = 0.00000001
- gateway = 4
- passroll = 4
- multipler = 1.42
- winChance = {
- 49,
- 49
- }
- loseChance = {
- 14,
- 28
- }
- ws = 0
- ls = 0
- gocount = 0
- fbcount = 0
- tmplose = 0
- cprofit = 0
- betcount = 0
- swChance = false
- nextbet = prebet
- passcount = passroll
- chance = winChance[2]
- target = balance+targetProfit
- limite = balance*(limiteLose/100)
- function dobet()
- if balance>target then
- log(" # target Profit reached !!")
- stop()
- end
- if previousbet>limite then
- log(" # pause limiteLose !! ")
- stop()
- end
- betcount = betcount + 1
- cprofit = cprofit + currentprofit
- if win then
- nextbet = prebet
- ws = ws + 1
- ls = 0
- chance = math.random(winChance[1]*100,winChance[2]*100)/100
- swChance = false
- if (cprofit > ifProfit) and win then
- gocount = 0
- fbcount = 0
- cprofit = 0
- tmplose = 0
- nextbet = prebet
- passcount = passroll
- else
- gocount = 0
- nextbet = prebet
- passcount = passroll
- end
- if betcount>resetSeed then
- log(" # resetseed !!")
- resetseed()
- betcount = 0
- end
- else
- ls = ls + 1
- ws = 0
- chance = math.random(loseChance[1]*100,loseChance[2]*100)/100
- swChance = true
- if passcount==0 then
- if gocount==gateway then
- nextbet = basebet*multipler
- gocount = 0
- passcount = passroll
- fbcount = fbcount + 1
- else
- if tmplose==0 then
- nextbet = basebet*multipler
- tmplose = nextbet
- else
- nextbet = tmplose*multipler
- tmplose = nextbet
- end
- end
- gocount = gocount + 1
- else
- passcount = passcount - 1
- nextbet = prebet
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement