Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --MODE RECOVERY LOSE
- --HIGH RISK + RAKUS
- --BONUS WAGERED
- chance = 49.5
- base = 0.15
- preset = 0.05
- ifwin = 1.035
- iflose = 1.115
- nextbet = base
- cprofit = 0
- target = balance*2
- resetstats()
- resetchart()
- --resetseed()
- function dobet()
- if balance>target then
- stop()
- end
- cprofit = cprofit + currentstreak
- if win then
- nextbet = previousbet * ifwin
- else
- nextbet = previousbet * iflose
- end
- if cprofit > preset then
- cprofit = 0
- nextbet = base
- end
- if (win) then
- chance = math.random(66,98)
- else
- if (losses > 1) then
- chance = math.random(39,50)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement