Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bal = balance
- snow = balance/2000
- joe = snow
- bethigh = false
- chance = 49.5
- have = balance
- old = balance
- darn = 2.9
- upper = 6.9
- wict = 0
- crud = (snow*6.9)
- rupt = (snow*10)
- stip = balance
- downer = false
- nextbet = snow
- resetstats()
- function dobet()
- if win then
- bal = bal+lastBet.Amount
- end
- if not win then
- bal = bal-lastBet.Amount
- end
- if ((bal>(have+(joe*upper))) and (bal<old)) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- have = bal
- end
- if ((bal>(have+(joe*upper))) and (bal>=old)) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- downer = false
- have = bal
- end
- if (((bal<(have-(joe*darn))) and (wict<1)) or ((bal<(have-(joe*darn))) and (wict>=2))) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- wict = wict+1
- downer = true
- have = bal
- end
- if ((bal<(have-(joe*darn))) and (wict==1)) then
- nextbet = lastBet.Amount*2
- joe = lastBet.Amount*2
- darn = 4.9
- upper = 4.9
- wict = wict+1
- downer = false
- have = bal
- end
- if ((bal>old) and (downer==true) and (bal<(old+(crud)))) then
- downer = false
- have = old
- old = old
- darn = 2.9
- wict = 0
- upper = 6.9
- nextbet = snow
- joe = snow
- end
- if ((bal>old) and (downer==true) and (bal>=(old+(crud)))) then
- downer = false
- have = old
- old = old
- darn = 2.9
- upper = 6.9
- wict = 0
- nextbet = snow*2
- joe = snow*2
- end
- if ((bal>=(old+rupt)) and (bal<(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
- downer = false
- have = old+((math.floor((bal-old)/(rupt)))*(rupt))
- old = old+((math.floor((bal-old)/(rupt)))*(rupt))
- darn = 2.9
- upper = 6.9
- wict = 0
- nextbet = snow
- joe = snow
- end
- if ((bal>=(old+rupt)) and (bal>=(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
- downer = false
- have = old+((math.floor((bal-old)/(rupt)))*(rupt))
- old = old+((math.floor((bal-old)/(rupt)))*(rupt))
- darn = 2.9
- upper = 6.9
- wict = 0
- nextbet = snow*2
- joe = snow*2
- end
- if (balance>=100) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement