Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 80.2
- basebet = balance/1e5
- basereset = basebet * 1000
- nextbet = basebet
- chance = 49.95
- targetpf = balance * 1.35
- tempBets = 0
- tempLosses = 0
- resetstats()
- function dobet()
- if win then
- chance = 38
- if currentstreak >= 2 then
- nextbet = basebet
- end
- else
- nextbet = nextbet + (nextbet * (35/100))
- end
- if losses - tempLosses == 10 then
- chance = 22
- tempLosses = losses
- end
- if bets - tempBets == 100 then
- bethigh = not bethigh
- tempBets = bets
- end
- if balance > targetpf then stop() end
- if partialprofit > basereset then
- nextbet = basebet
- resetpartialprofit()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement