Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat = 240
- y = balance/cat
- chance = 49.95
- bethigh = false
- target = 3000
- nextbet = y
- old = balance
- older = balance
- bib = 0
- bob = 0
- resetstats()
- function dobet()
- if win then
- bob = bob+1
- bib = bib-1
- else
- bib = bib+1
- bob = bob-1
- end
- if (bob>=6) then
- nextbet = previousbet*2
- bob = 0
- end
- if (bib>=5) then
- nextbet = previousbet*2
- bib = 0
- end
- if (nextbet>=(y*2)) and (balance>=old) then
- bob = 0
- bib = 0
- nextbet = y
- old = balance
- end
- if (balance>(older*3)) then
- y = balance/cat
- bob = 0
- bib = 0
- nextbet = y
- older = balance
- end
- if balance>target or balance<nextbet then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement