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)
- oldbalanceone = ((math.floor(balance/tens))*tens)
- oldbalancetwo = ((math.floor(balance/tens))*tens)
- upper = 6.9
- downer = 2.9
- multi = 1
- chance = 49.5
- bethigh = false
- nextbet = floatingbasebet
- resetstats()
- function dobet()
- if (balance>(oldbalanceone+(floatingbasebet*upper))) then
- floatingbasebet = floatingbasebet*2
- upper = 4.9
- downer = 4.9
- oldbalanceone = balance
- end
- if (balance<(oldbalanceone-(floatingbasebet*downer))) then
- floatingbasebet = floatingbasebet*2
- upper = 4.9
- downer = 4.9
- multi = 0
- oldbalanceone = balance
- end
- if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
- floatingbasebet = base
- multi = 1
- upper = 6.9
- downer = 2.9
- oldbalanceone = ((math.floor(balance/tens))*tens)
- oldbalancetwo = ((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