Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- snow = balance/1000
- joe = snow
- bethigh = false
- chance = 49.5
- have = balance
- older = balance
- darn = 2.9
- upper = 6.9
- rupt = (snow*10)
- smick = (snow*20)
- nextbet = snow
- resetstats()
- function dobet()
- if (balance<(have-(joe*darn))) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- have = balance
- end
- if (balance>(have+(joe*upper))) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- have = balance
- end
- if (balance>(older+smick)) then
- have = older+((math.floor(((balance-older)/(rupt))))*(rupt))
- older = older+((math.floor(((balance-older)/(rupt))))*(rupt))
- darn = 2.9
- upper = 6.9
- nextbet = snow
- joe = snow
- end
- if (balance>=300) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement