Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 100
- basebet = balance/fraction
- base = basebet
- chance = 49.95
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = 5000
- ol = balance
- old = balance
- resetstats()
- function dobet()
- if win then
- ol = balance
- else
- old = balance
- end
- if (balance>=(old+(base*2))) and win then
- nextbet = previousbet*2
- base = nextbet
- old = balance
- end
- if (balance<=(ol-(base*1))) and !win then
- nextbet = previousbet/2
- ol = balance
- base = nextbet
- old = balance
- end
- if balance<=nextbet*50 then
- nextbet = basebet
- base = basebet
- ol = balance
- old = balance
- end
- if nextbet<basebet then
- nextbet = basebet
- end
- if (balance>=(oldbal*2)) and win then
- nextbet = balance/fraction
- basebet = balance/fraction
- base = balance/fraction
- ol = balance
- oldbal = balance
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement