Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 69.69
- base = balance/50
- prebet = balance/50
- nextbet = prebet
- enablezz = true
- enablesrc = true
- losecount = 0
- betcount = 0
- startbalance = balance
- investprofit = 0
- function dobet()
- investprofit += currentprofit
- print("Total Bets/Current Lose Streak/Bet Size/Balance")
- print(betcount)
- print(losecount)
- print(nextbet)
- print(balance)
- if win then
- nextbet = prebet
- chance = 69.69
- losecount = 0
- betcount += 1
- else
- losecount += 1
- betcount += 1
- end
- if (losecount > 0) then
- nextbet = previousbet*4
- chance = 72
- end
- if (losecount > 1) then
- nextbet = previousbet*2.5
- chance = 49
- end
- if (losecount > 2) then
- nextbet = previousbet/4
- chance = 9
- end
- if (losecount > 3) then
- nextbet = previousbet*11
- chance = 80
- end
- if (losecount > 99) then
- nextbet = previousbet*25
- chance = 95
- end
- if (losecount > 99) then
- nextbet = previousbet*2
- chance = 32
- end
- if (losecount > 109) then
- nextbet = previousbet*1.3
- chance = 19
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement