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