Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --javer-auto-reconstucted
- --Update 22-04-2023
- basebet = balance/1e5
- nextbet = basebet
- chance = 49.95
- targetProfit = balance * 30
- roll = 2
- addToBetAmount = balance/1e9
- tempBets = 0
- tempLosses = 0
- lcount = 0
- wcount = 0
- profitc = 0
- resetstats()
- resetchart()
- dobet = function()
- profitc = profitc + lastBet.profit
- if win then
- wcount = wcount + 1
- lcount = 0
- if lcount%roll == 0 then
- nextbet = previousbet - (previousbet * (20 / 100)) end
- chance = 38
- if(profitc > 0) then
- profitc = 0
- nextbet = basebet
- lcount = 0
- chance = 90
- resetpartialprofit()
- end
- else
- lcount = lcount + 1
- wcount = 0
- if lcount%roll == 0 then
- if bets%2== 0 then
- nextbet = previousbet * 1.5 end
- if currentstreak <= -3 then
- nextbet = nextbet + addToBetAmount
- end
- end
- if losses - tempLosses == 1 then
- chance = math.random(9,23)
- tempLosses = losses
- end
- if bets - tempBets == 10 then
- bethigh = not bethigh
- tempBets = bets
- end
- if balance > targetProfit then stop() end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement