Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function incr(x,y)
- return x + (x * (y/100))
- end
- function decr(x,y)
- return x - (x * (y/105))
- end
- simplestats_balhi = balance
- simplestats_balst = balance
- simplestats_maxdrop,simplestats_profitc = 0,0
- function fn_simplestats()
- simplestats_profitc += currentprofit
- if (simplestats_profitc >= 0) then
- simplestats_profitc = 0
- simplestats_balhi = balance
- end
- simplestats_drop = simplestats_balhi - balance
- if (simplestats_drop > simplestats_maxdrop) then
- simplestats_maxdrop = simplestats_drop
- end
- print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
- print("░▒▓- Dropdown \t[ "..string.format("%.8f",simplestats_maxdrop).."\t"..string.format("%.2f",simplestats_maxdrop/simplestats_balst*100).."% ]")
- end
- target = balance * 91.4
- basebet = 1e-8
- betlose = 0
- sumlose = 0
- nextbet = basebet
- chance = 25
- resetchart()
- resetstats()
- function dobet()
- if win then
- betlose = 0
- nextbet = basebet
- else
- sumlose += 1
- betlose += 1
- chance = decr(chance, 1.5)
- nextbet = incr(nextbet, 15.6)
- if (sumlose%25 == 0) then chance = incr(chance, 10) end
- if (betlose == 35) then chance = incr(chance, 43) end
- if (betlose == 45) then chance = incr(chance, 32) end
- if (betlose == 55) then chance = incr(chance, 42) end
- end
- if balance > target then stop() end
- print("\n\n░▒▓█ PADEPOKAN DADU █▓▒░\n")
- fn_simplestats()
- print("\n")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement