Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 80.2
- basebet = balance * 1e-8
- addToBetAmount = balance * 1e-4
- maxwin = balance * 1e-2
- targetProfit = balance * 2
- tempBets = 0
- tempLosses = 0
- nextbet = basebet
- chance = 49.95
- resetstats()
- resetchart()
- --resetseed()
- function dobet()
- if win then
- nextbet = nextbet - (nextbet * (20 / 100))
- chance = 38
- if currentstreak >= 2 then
- nextbet = basebet
- end
- else
- nextbet = nextbet + (nextbet * (35/100))
- if currentstreak <= -6 then
- nextbet = nextbet + addToBetAmount
- end
- end
- if losses - tempLosses == 10 then
- chance = 22
- tempLosses = losses
- end
- if bets - tempBets == 100 then
- bethigh = not bethigh
- tempBets = bets
- end
- if balance > targetProfit then stop() end
- partialprofit = partialprofit + currentprofit
- if(partialprofit > 0) then
- if currentprofit > maxwin then
- nextbet = basebet
- end
- partialprofit = 0
- end
- end
- partialprofit = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement