Advertisement
Baliarta

RANDOMIZER

Feb 1st, 2023
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. minC1 = 79
  2. maxC1 = 80
  3. minC2 = 42
  4. maxC2 = 55
  5. stop = 0.0000001100001
  6. multiplier = 1.7811
  7. if_win = 1.106
  8. base = 0.0000001
  9. nextbet = 0.0000142
  10. bethigh = false
  11. rollcount = 15
  12. roundprofit = 0
  13. chance = math.random(minC2*100.0, maxC2*100.0)/100.0
  14.  
  15. resetstats()
  16. resetchart()
  17. function dobet()
  18. roundprofit+=currentprofit
  19. --Randomizer
  20.  
  21. r=math.random(2)
  22.  
  23. if r == 1 then
  24. bethigh=true
  25. else
  26. bethigh=false
  27. end
  28.  
  29. --change seed every 7 bet
  30.  
  31. if rollcount == 15 then
  32. rollcount = 0
  33. --resetseed();
  34. else
  35. rollcount = rollcount + 1
  36. end
  37.  
  38. --bet progression
  39.  
  40. if win then
  41. chance = math.random(minC2*100.0, maxC2*100.0)/100.0
  42. nextbet = previousbet * if_win
  43. else
  44. chance = math.random(minC1*100.0, maxC1*100.0)/100.0
  45. nextbet = previousbet * multiplier
  46. end
  47. if roundprofit > stop then
  48. roundprofit=0
  49. nextbet=base
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement