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