Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50000
- basebet = balance/fraction
- base = basebet
- chance = 24.975
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = 32000
- shit = balance
- function dobet()
- if (balance<=(shit-(base*(math.random(6,10))))) then
- nextbet = previousbet*2
- shit = balance
- base = nextbet
- end
- if (balance>(shit+base)) then
- nextbet = previousbet*2
- base = nextbet
- shit = balance
- end
- if (balance>=oldbal) and win then
- nextbet = balance/fraction
- base = balance/fraction
- shit = balance
- oldbal = balance
- end
- if balance>=target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement