Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 500
- basebet = 0.01
- base = basebet
- chance = 95
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = 500
- sux = 0
- wage = 0
- bim = 0
- resetstats()
- function dobet()
- wage = wage+previousbet
- if (!win) and (chance==95) then
- nextbet = (wage*20)
- bim+=1
- end
- if (win) and (chance==95) then
- bim = 0
- end
- if bim>=2 then
- bethigh = !bethigh
- chance = 24
- bim = 0
- end
- if (!win) and (chance==24) then
- nextbet = ((wage/3)+basebet)
- sux = sux+1
- end
- if (win) and (chance==24) then
- sux = 0
- bethigh = !bethigh
- chance = 95
- end
- if (sux>=3) then
- nextbet = wage*24
- bethigh = !bethigh
- chance = 95
- bim = 0
- sux = 0
- end
- if (balance>=oldbal) then
- nextbet = basebet
- sux = 0
- wage = 0
- oldbal = balance
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement