Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- snowy Special thanx to DiceBender v2
- basebet = 0.01
- chance = 49.95
- nextbet = basebet
- tp = balance*20000
- investtarget = balance
- tmpprofit = 0
- investprofit = 0
- bethigh = false
- oldbal = balance
- looose = 0
- multi = 0
- resetstats()
- function dobet()
- tmpprofit = tmpprofit + profit
- investprofit+= profit
- if win then
- if(tmpprofit > 0) then
- tmpprofit = 0
- if(investprofit > investtarget) then
- investprofit = 0
- investtarget = balance
- end
- else
- multi+=1
- if(nextbet < basebet) then
- nextbet = basebet
- end
- end
- else
- looose+=1
- if(nextbet < basebet) then
- nextbet = basebet
- end
- end
- if looose>=5 then
- nextbet = previousbet*6
- looose = 0
- end
- if multi>=2 then
- nextbet = previousbet*2
- multi = 0
- end
- if (balance>=(oldbal+(basebet*3))) then
- nextbet = basebet
- investprofit = 0
- tmpprofit = 0
- oldbal = balance
- looose = 0
- multi = 0
- end
- if balance >= tp then stop () end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement