Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 98
- bethigh = true
- basebet = 0.0002 + balance/5000
- nextbet = 0.0002 + balance/5000
- roundprofit = 0.00000001
- round = 0
- tp = 100000
- function dobet()
- round = round + currentprofit
- if(win) then
- chance = chance-1
- nextbet = previousbet*2
- else
- chance = chance+2
- nextbet = previousbet/2
- end
- if (round > roundprofit) then
- round = 0
- nextbet = 0.0002 + balance/5000
- chance = 98
- end
- if nextbet < basebet then nextbet = 0.0002 + balance/5000 end
- if chance > 98 then chance = 98 end
- if chance < 90 then chance = 98 end
- if nextbet > balance then nextbet = previousbet/3 end
- end
Add Comment
Please, Sign In to add comment