Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 132000
- basebet = balance/fraction
- frac = 8600
- box = balance/frac
- chance = 49.95
- nextbet = basebet
- bethigh = false
- snowy = 0
- bill = 0
- target = 450000
- ol = balance
- olly = balance
- resetstats()
- function dobet()
- basebet = balance/fraction
- if (!win) then
- snowy+=1
- end
- if (snowy>=(math.random(2,3))) and (!win) then
- nextbet = previousbet*2
- snowy = 0
- end
- if (balance<=(ol-(box*24))) then
- box = balance/frac
- nextbet = previousbet
- bill+=1
- ol = balance
- end
- if (bill==2) then
- nextbet = previousbet*3
- bill = 0
- end
- if (balance>=(olly+(basebet*2))) then
- nextbet = basebet
- olly = balance
- ol = balance
- bill = 0
- box = balance/frac
- end
- if (balance>target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement