Advertisement
Baliarta

set JAVER

Apr 23rd, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. --javer-auto-reconstucted
  2. --Update 22-04-2023
  3. basebet = balance/1e5
  4. nextbet = basebet
  5. chance = 49.95
  6. targetProfit = balance * 30
  7. roll = 2
  8. addToBetAmount = balance/1e9
  9. tempBets = 0
  10. tempLosses = 0
  11. lcount = 0
  12. wcount = 0
  13. profitc = 0
  14. resetstats()
  15. resetchart()
  16. dobet = function()
  17. profitc = profitc + lastBet.profit
  18. if win then
  19. wcount = wcount + 1
  20. lcount = 0
  21. if lcount%roll == 0 then
  22. nextbet = previousbet - (previousbet * (20 / 100)) end
  23. chance = 38
  24.  
  25. if(profitc > 0) then
  26. profitc = 0
  27. nextbet = basebet
  28. lcount = 0
  29. chance = 90
  30. resetpartialprofit()
  31. end
  32. else
  33.  
  34. lcount = lcount + 1
  35. wcount = 0
  36. if lcount%roll == 0 then
  37. if bets%2== 0 then
  38. nextbet = previousbet * 1.5 end
  39.  
  40.  
  41. if currentstreak <= -3 then
  42. nextbet = nextbet + addToBetAmount
  43. end
  44. end
  45. if losses - tempLosses == 1 then
  46. chance = math.random(9,23)
  47. tempLosses = losses
  48. end
  49. if bets - tempBets == 10 then
  50. bethigh = not bethigh
  51. tempBets = bets
  52. end
  53.  
  54. if balance > targetProfit then stop() end
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement