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