Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 98
- chin = {1,5,2,10,3,5,4,10,5,10,17}
- chindex = 1
- first_index = false
- basebet = 0.000015
- minbet = 1e-8
- wagered = 0
- nextbet = basebet
- betlose = 0
- betsafe = false
- function dobet()
- betlose = betlose + currentprofit
- if betlose >= 0 then
- betsafe = false
- betlose = 0
- nextbet = basebet
- chance = 80
- resetpartialprofit()
- else
- if not betsafe then chance = 5 end
- betsafe = true
- end
- if betsafe then
- if bets%3==0 then
- chindex = math.random(1, #chin)
- chance = chin[chindex]
- multi = 1 + ((chance/100) * 2)
- nextbet = previousbet * multi
- end
- multi = 1 + ((chance/100) * 1.28)
- nextbet = previousbet * multi
- --nextbet = math.abs(betlose)/((99/chance)-1)
- end
- if nextbet < minbet then nextbet = minbet end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement