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