Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50000
- basebet = balance/fraction
- base = balance/fraction
- nextbet = basebet
- mega = 200000
- chance = 49.95
- oldbal = balance
- target = balance*2
- bethigh = false
- old = balance
- bad = balance
- max = true
- resetstats()
- function dobet()
- if ((balance-bad)>=(basebet*7)) then
- nextbet = previousbet*2
- basetbet = nextbet
- bad = balance
- end
- if (bad-basebet>balance) then
- nextbet = previousbet*2
- basebet = nextbet
- bad = balance
- max = false
- end
- if balance>=old and max==true then
- old = balance
- end
- if balance>=old and max==false then
- nextbet = base
- basebet = base
- bad = balance
- max = true
- old = balance
- end
- if ((balance-oldbal)>=(basebet*11)) then
- nextbet = base
- basebet = base
- max = true
- bad = balance
- oldbal = balance
- end
- if balance>target then
- base = balance/fraction
- nextbet = base
- basebet = base
- max = true
- bad = balance
- oldbal = balance
- target = balance*2
- end
- if balance>=mega then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement