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