Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 98
- basebet = balance / 1000
- minbet = 0.000088
- wagered = 0
- nextbet = basebet
- betlose = 0
- betsafe = false
- function dobet()
- betlose = betlose + currentprofit
- if betlose >= 0 then
- bethigh = not bethigh
- betsafe = false
- betlose = 0
- nextbet = basebet
- chance = 98
- else
- if not betsafe then chance = 2 end
- betsafe = true
- end
- if betsafe then
- if bets%3==0 then
- chance = chance + 0.05
- end
- 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