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()
- wage = wage+previousbet
- if (!win) and (chance==24) and box==false then
- nextbet = wage/3
- bim+=1
- end
- if (win) and (chance==24) then
- nextbet = wage/3
- end
- if bim>=3 then
- bethigh = !bethigh
- chance = 49.95
- bim = 0
- end
- if (!win) and (chance==49.95) then
- nextbet = wage
- sux+=1
- end
- if (win) and (chance==49.95) then
- bethigh = !bethigh
- sux = 0
- chance = 24
- end
- if (sux>=3) then
- nextbet = wage/3
- bethigh = !bethigh
- chance = 90
- bim = 0
- sux = 0
- end
- if (!win) and (chance==90) then
- nextbet = wage*5
- zim+=1
- end
- if (win) and (chance==90) then
- bethigh = !bethigh
- sux = 0
- chance = 24
- end
- if (zim>=1) then
- nextbet = wage*2
- bethigh = !bethigh
- chance = 24
- bim = 0
- box = true
- sux = 0
- end
- if (!win) and (chance==24) and box==true then
- nextbet = wage*2
- bim+=1
- end
- if (balance>=oldbal) then
- nextbet = balance/fraction
- sux = 0
- bim = 0
- zim = 0
- box = false
- wage = base
- oldbal = balance
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement