Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- startbase = 0.0001
- nextbet = startbase
- chance = 80
- chancex = {1,5,2,10,3,5,4,10,5,10,17}
- chindex = 1
- first_index = false
- function dobet()
- if win and (partialprofit > 0) then
- chance = 80
- nextbet = startbase
- resetpartialprofit ()
- else
- if chance < 50 then
- chance = 80
- multi = 1 + ((chance/100) * 1.14)
- nextbet = previousbet * multi
- end
- if chance == 80 then
- chindex = math.random(1, #chancex)
- chance = chancex[chindex]
- multi = 1 + ((chance/100) * 1.8)
- nextbet = previousbet * multi
- end
- nextbet = nextbet * multi
- multi = multi + 0.25
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement