Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50000
- basebet = balance/fraction
- base = basebet
- chance = 24
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = 50000
- sux = 0
- wage = base
- bim = 0
- zim = 0
- resetstats()
- function dobet()
- if !win then
- doh = true
- else
- doh = false
- chance = 24
- bethigh = !bethigh
- end
- wage = wage+previousbet
- if ((doh==true)and(lastBet.Chance==24.000)) then
- nextbet = wage/3
- bim+=1
- end
- if (bim>=2) then
- bethigh = !bethigh
- nextbet = wage
- chance = 49.95
- bim = 0
- end
- if ((doh==true)and(lastBet.Chance==49.95000)) then
- nextbet = wage
- sux+=1
- end
- if (sux>=2) then
- nextbet = wage*10
- bethigh = !bethigh
- chance = 90
- sux = 0
- end
- if ((doh==true)and(lastBet.Chance==90.000)) then
- nextbet = wage*10
- zim+=1
- end
- if (zim>=2) then
- nextbet = wage*2
- bethigh = !bethigh
- chance = 24
- zim = 0
- end
- if (balance>=oldbal) then
- nextbet = balance/fraction
- base = balance/fraction
- sux = 0
- bim = 0
- zim = 0
- wage = base
- oldbal = balance
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement