Advertisement
Baliarta

WAGER+ PROFIT(JIKA LOLOS)

Feb 3rd, 2023
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. --MODE RECOVERY LOSE
  2. --HIGH RISK + RAKUS
  3. --BONUS WAGERED
  4. chance = 49.5
  5. base = 0.15
  6. preset = 0.05
  7. ifwin = 1.035
  8. iflose = 1.115
  9. nextbet = base
  10. cprofit = 0
  11. target = balance*2
  12. resetstats()
  13. resetchart()
  14. --resetseed()
  15. function dobet()
  16. if balance>target then
  17. stop()
  18. end
  19. cprofit = cprofit + currentstreak
  20. if win then
  21. nextbet = previousbet * ifwin
  22. else
  23. nextbet = previousbet * iflose
  24. end
  25. if cprofit > preset then
  26. cprofit = 0
  27. nextbet = base
  28. end
  29. if (win) then
  30. chance = math.random(66,98)
  31. else
  32. if (losses > 1) then
  33. chance = math.random(39,50)
  34. end
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement