Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.01
- oldbalance = balance
- i = balance
- bethigh = false
- nextbet = basebet
- target = 50000
- f = true
- resetstats()
- function dobet()
- if ((oldbalance-(basebet*3)==balance)) then
- nextbet = previousbet*2
- f = false
- end
- if ((oldbalance-(basebet*9)==balance)) then
- nextbet = previousbet/2
- f = false
- end
- if ((oldbalance-(basebet*13)==balance)) then
- nextbet = previousbet*2
- f = false
- end
- if ((oldbalance-(basebet*19)==balance)) then
- nextbet = previousbet*2
- f = false
- end
- if ((oldbalance-(basebet*23)==balance))then
- nextbet = previousbet*2
- f = false
- end
- if (((oldbalance+(basebet*7)==balance)) and (f==true)) then
- nextbet = previousbet*2
- f = false
- end
- if (balance>=(i+(basebet*11))) then
- nextbet = basebet
- f = true
- oldbalance = (i+(basebet*10))
- i = (i+(basebet*11))
- end
- if balance>=target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement