Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 24000
- basebet = balance/fraction
- chance = 49.95
- nextbet = basebet
- bethigh = true
- snowy = 0
- snow = 0
- oldbal = balance
- bal = balance
- bing = balance
- target = 40000
- bill = false
- zim = false
- function dobet()
- if !win then
- snow+=1
- snowy+=1
- end
- if (snowy>=2) and (balance>=bal) then
- nextbet = previousbet*2
- snowy = 0
- bill = true
- snow = 0
- end
- if (bill==true) and (balance>(bing-(basebet*4))) then
- nextbet = previousbet
- snowy = 0
- end
- if snow>=4 and balance<bing then
- nextbet = previousbet*2
- snow = 0
- snowy = 0
- end
- if (balance>(bing-(basebet*4))) and (balance<=bal) then
- nextbet = previousbet
- snowy = 0
- end
- if (balance>=(oldbal+(basebet*2))) and win and (zim==false) then
- nextbet = balance/fraction
- oldbal = balance
- snow = 0
- snowy = 0
- zim = true
- bill = false
- bal = balance
- bing = balance
- resetseed()
- end
- if (balance>=oldbal) and (zim==true) then
- zim = false
- nextbet = balance/fraction
- oldbal = balance
- snow = 0
- snowy = 0
- bill = false
- bal = balance
- bing = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement