Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- betbse = (balance/1000)
- bethigh = false
- chance = 49.5
- nextbet = betbse
- original = balance
- tens = (betbse*10)
- seventy = (betbse*70)
- twohundreds = (betbse*50)
- sevens = (betbse*6.9)
- eights = (betbse*7.9)
- setasseven = 0
- chickendinner = 144000
- balance = balance
- goodoldbal = ((math.floor(balance/tens))*tens)
- upper = 6.9
- downer = 2.9
- belance = balance
- resetstats()
- function dobet()
- if win then
- belance = belance+previousbet
- end
- if !win then
- belance = belance-previousbet
- end
- if (belance>(goodoldbal+(previousbet*upper))) then
- nextbet = previousbet*2
- upper = 4.9
- downer = 4.9
- goodoldbal = belance
- end
- if (belance<(goodoldbal-(previousbet*downer))) then
- nextbet = previousbet*2
- upper = 4.9
- downer = 4.9
- goodoldbal = belance
- end
- if (((belance-(nextbet*40))<=(belance/40)) and (belance<(((math.floor(belance/tens))*tens)+sevens))) then
- nextbet = betbse
- upper = 6.9
- downer = 2.9
- goodoldbal = ((math.floor(belance/tens))*tens)
- end
- if (((belance-(nextbet*40))<=(belance/40)) and (belance>(((math.floor(belance/tens))*tens)+sevens)) and (belance<(((math.floor(belance/tens))*tens)+eights))) then
- nextbet = betbse*2
- upper = 4.9
- downer = 4.9
- goodoldbal = belance
- end
- if (((belance-(nextbet*40))<=(belance/40)) and (belance>(((math.floor(belance/tens))*tens)+eights))) then
- nextbet = betbse
- upper = 6.9
- downer = 2.9
- goodoldbal = ((math.floor(belance/tens))*tens)
- end
- if (((original-(nextbet*10))<=(original/10)) and (belance<(((math.floor(belance/tens))*tens)+sevens))) then
- nextbet = betbse
- upper = 6.9
- downer = 2.9
- goodoldbal = ((math.floor(belance/tens))*tens)
- end
- if (((original-(nextbet*10))<=(original/10)) and (belance>(((math.floor(belance/tens))*tens)+sevens)) and (belance<(((math.floor(belance/tens))*tens)+eights))) then
- nextbet = betbse*2
- upper = 4.9
- downer = 4.9
- goodoldbal = belance
- end
- if (((original-(nextbet*10))<=(original/10)) and (belance>(((math.floor(belance/tens))*tens)+eights))) then
- nextbet = betbse
- upper = 6.9
- downer = 2.9
- goodoldbal = ((math.floor(belance/tens))*tens)
- end
- if (nextbet==null) then
- nextbet = previousbet
- end
- if (belance<nextbet) then
- stop()
- end
- if (balance>=chickendinner) then
- print("winner winner chicken dinner")
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement