Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 21000
- basebet = balance/fraction
- nextbet = basebet
- chance = 90
- oldbal = balance
- snowy = 0
- jim = 0
- lol = balance
- bill = false
- target = balance*320000
- bethigh = false
- int = basebet
- resetstats()
- function dobet()
- if win then
- snowy = 0
- else
- snowy+=1
- nextbet = previousbet*2
- end
- if (snowy==1) then
- int = previousbet
- end
- if (snowy>=1) then
- nextbet = 0
- jim+=1
- end
- if (jim>=1) and win then
- nextbet = (int*12)
- jim = 0
- end
- if win and snowy<2 then
- jim = 0
- end
- if (balance>=oldbal) then
- nextbet = balance/fraction
- oldbal = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement