Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50
- basebet = balance/fraction
- base = balance/fraction
- nextbet = basebet
- chance = 49.95
- oldbal = balance
- target = 500
- bethigh = false
- old = balance
- bad = balance
- lol = balance
- myseed = 0
- bik = 0
- resetstats()
- function dobet()
- if ((balance-bad)>=(basebet*4)) then
- nextbet = previousbet*2
- basetbet = nextbet
- bad = balance
- end
- if ((bad-(basebet*4))>=balance) then
- nextbet = previousbet*2
- basebet = nextbet
- bad = balance
- end
- if (nextbet>(balance+(base*4))) then
- nextbet = previousbet/2
- basebet = nextbet
- bad = balance
- end
- if nextbet<base then
- nextbet = base
- end
- if (balance>=(oldbal+(base*4))) then
- nextbet = base
- basebet = base
- bad = balance
- oldbal = balance
- end
- if nextbet>=balance then
- stop()
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement