Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- base = (((((((balance/2)/2)/2)/2)/2)/2)/10)
- floatingbasebet = base
- target = 1000
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.9)
- oldbalance = ((math.floor(balance/tens))*tens)
- bogus = balance
- chance = 49.5
- bethigh = false
- oldDegen = 0
- multi = 4
- unit = 20
- nextbet = floatingbasebet
- resetstats()
- function dobet()
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalance) and (not (balance==oldDegen))) then
- floatingbasebet = floatingbasebet*2
- oldDegen = balance
- end
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalance) and (not (balance==oldDegen))) then
- floatingbasebet = floatingbasebet*2
- oldDegen = balance
- end
- if (((balance-(floatingbasebet*40))<=0) or ((floatingbasebet*10)>=bogus)) then
- floatingbasebet = base
- multi = 0
- oldDegen = 0
- end
- nextbet = floatingbasebet
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement