Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- joey = 0
- james = ((math.floor(balance/tens))*tens)
- prefit = (balance/1440000)
- winnerdinner = balance
- tens = (prefit*10)
- sevens = (prefit*6.9)
- eights = (prefit*7.9)
- bethigh = false
- chance = 49.5
- nextbet = prefit
- resetstats()
- function dobet()
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (not ((balance>(joey-(prefit/2))) and (balance<(joey+(prefit/2)))))) then
- nextbet = previousbet*2
- joey = balance
- end
- if ((balance>=(james+tens)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
- nextbet = prefit
- joey = 0
- james = ((math.floor(balance/tens))*tens)
- end
- if balance >= (winnerdinner * 24000) then
- print("winner winner chicken dinner")
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement