Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- div = 240
- b = balance/div
- basebet = b
- bim = (b*3)
- oldt = balance
- oldbal = balance
- old = balance
- chance = 49.5
- nextbet = b
- bs = (b*7)
- target = balance*5
- f = false
- g = false
- bethigh = true
- resetstats()
- function dobet()
- bets = bets+1
- if (balance>=(oldbal+(basebet*7))) then
- nextbet = basebet*2
- basebet = nextbet
- bets = 0
- bim = (basebet*3)
- oldbal = balance
- end
- if (balance<=(oldbal-bim)) then
- nextbet = basebet*2
- basebet = nextbet
- bim = (basebet*3)
- f = true
- bets = 0
- g = true
- oldbal = balance
- end
- if ((balance>oldbal) and (g==true) and (nextbet>=(b*2)) and (bets>=3)) then
- nextbet = previousbet/2
- basebet = nextbet
- bets = 0
- g = false
- oldbal = balance
- end
- if ((balance>=(old+(b*10))) or ((balance>=old) and (f==true))) then
- nextbet = b
- f = false
- g = false
- bim = (b*3)
- basebet = b
- bets = 0
- oldt = balance
- oldbal = balance
- old = balance
- end
- if (balance>=target) then
- tip(3672736,(balance/2))
- nextbet = b
- basebet = b
- f = false
- g = false
- bim = (b*3)
- bets = 0
- oldt = balance/2
- oldbal = balance/2
- old = balance/2
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement