Baliarta

Premium shot

Dec 18th, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1.  
  2. --Premmium SC Shot--
  3.  
  4. minC1 = 78
  5. maxC1 = 93
  6. minC2 = 5
  7. maxC2 = 35
  8. bone = 0.01
  9. btwo = 0.01
  10. stop = 5
  11. multiplier = 1.06
  12. if_win = 1.106085
  13. base = 0.0100
  14. nextbet = 0.0101
  15. bethigh = false
  16. rollcount = 7
  17.  
  18. chance = math.random(minC2*100.0, maxC2*100.0)/100.0
  19.  
  20. resetstats()
  21.  
  22. function dobet()
  23.  
  24. --Randomizer
  25.  
  26. r=math.random(2)
  27.  
  28. if r == 1 then
  29. bethigh=true
  30. else
  31. bethigh=false
  32. end
  33.  
  34. --Randomly select High/Low
  35.  
  36. --bethigh = math.random(0,100)%2 == 0
  37.  
  38. --change seed every 7 bet
  39.  
  40. if rollcount == 7 then
  41. rollcount = 0
  42. resetseed();
  43. else
  44. rollcount = rollcount + 1
  45. end
  46.  
  47. --bet progression
  48.  
  49. if win then
  50. chance = math.random(minC2*100.0, maxC2*100.0)/100.0
  51. nextbet = previousbet * if_win
  52. else
  53. chance = math.random(minC1*100.0, maxC1*100.0)/100.0
  54. nextbet = previousbet * multiplier
  55. end
  56.  
  57. if profit>stop then
  58.  
  59. stop ()
  60.  
  61. end
  62. end
Add Comment
Please, Sign In to add comment