Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- base = balance/144000
- floatingbasebet = base
- target = 150000
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.5)
- oldbalanceone = 0
- boom = balance
- oldbalancetwo = ((math.floor(balance/tens))*tens)
- multi = 1
- chance = 49.5
- bethigh = false
- nextbet = floatingbasebet
- resetstats()
- function dobet()
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance>oldbalanceone)) then
- floatingbasebet = floatingbasebet*2
- oldbalanceone = balance
- end
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance<oldbalanceone)) then
- floatingbasebet = floatingbasebet*2
- oldbalanceone = balance
- end
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance>oldbalanceone)) then
- floatingbasebet = floatingbasebet*2
- multi = 0
- oldbalanceone = balance
- end
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance<oldbalanceone)) then
- floatingbasebet = floatingbasebet*2
- multi = 0
- oldbalanceone = balance
- end
- if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
- floatingbasebet = base
- multi = 1
- oldbalanceone = 0
- oldbalancetwo = ((math.floor(balance/tens))*tens)
- end
- if ((balance>=(boom*2.4)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
- base = balance/144000
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.5)
- floatingbasebet = base
- multi = 1
- oldbalanceone = 0
- oldbalancetwo = ((math.floor(balance/tens))*tens)
- boom = balance
- end
- nextbet = floatingbasebet
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement