Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = balance * 0.00000100
- chance = 50
- targetprofit = balance * 1.05
- nextbet = basebet
- mt = 1
- balance_TG = balance
- balance_Max1 = balance
- balance_Max2 = balance_Max1
- profit_Max = 0
- profit_2 = 0
- balmax = balance * 1.001
- function dobet()
- if win and profit > basebet then
- resetstats()
- chance = 50
- nextbet = basebet
- end
- chance = math.random(3500, 6500)/100
- if math.random(1, 3) % 2 == 0 then
- bethigh = true
- else
- bethigh = false
- end
- if balance >= targetprofit then
- stop()
- print ("Profit reached: " .. string.format("%.8f", profit))
- end
- if profit >= 0 then
- mt = 1
- else
- mt = -1
- end
- profit_2 = profit * mt
- if (balance > balance_Max1) then
- balance_Max2 = balance_Max1
- balance_Max1 = balance
- end
- if (profit_2 > profit_Max) then
- profit_Max = profit_2
- end
- if (balance >= balance_Max2) then
- nextbet = basebet
- print (">> nextbet1: " .. string.format("%.8f",nextbet))
- else
- if (bets % 2 == 0) then
- nextbet = (profit_Max + profit_2)/2
- print (">> nextbet2: " .. string.format("%.8f",nextbet))
- else
- nextbet = (previousbet + profit_2)/2
- print (">> nextbet3: " .. string.format("%.8f",nextbet))
- end
- end
- if (nextbet > (balance*0.1)) then
- nextbet = basebet
- balance_Max1 = balance
- end
- if (nextbet < basebet) then
- nextbet = basebet
- end
- if balance >= balmax then
- balmax = balance * 1.001
- nextbet = basebet
- print("balmax: "..balmax)
- end
- if currentstreak > 1 and previousbet > (mt/10) then nextbet = basebet end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement