Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50
- basebet = balance/fraction
- base = basebet
- chance = 49.95
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = balance*20
- big = 0
- bim = 0
- function dobet()
- if win then
- big+=1
- bim = 0
- else
- bim+=1
- big = 0
- end
- if big>=2 then
- nextbet = previousbet*2
- big = 0
- end
- if bim>=1 then
- nextbet = previousbet/2
- bim = 0
- end
- if nextbet<basebet then
- nextbet = basebet
- end
- if balance<=nextbet*5 then
- nextbet = basebet
- bim = 0
- big = 0
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement