Advertisement
Ypleitez

Untitled

Oct 11th, 2023
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. minimalbet = 0.00000001
  2. min = 10
  3. max = 75
  4. min2 = 35.5
  5. max2 = 60.6
  6. min3 = 2
  7. max3 = 7
  8. chance = math.random(min*100, max*100)/100
  9. bethigh = false
  10. basebet = balance / 1000000
  11. nextbet = basebet
  12. StopOnProfit = balance * 1.5
  13. round = 0
  14.  
  15. function dobet()
  16.  
  17. round = round + currentprofit
  18. if (round >= 0) then
  19. round = 0
  20. end
  21. if (math.abs(round) >= basebet * 1000) then
  22. stop()
  23. end
  24.  
  25. if (balance > StopOnProfit) then
  26. stop();
  27. end
  28. bethigh = math.random(2) == 1
  29. if (win) then
  30. if (currentstreak%3 == 0) then
  31. resetseed();
  32. chance = math.random(min3*100, max3*100)/100
  33. end
  34. else
  35. if (currentstreak%3 == 0) then
  36. chance = math.random(min3*100, max3*100)/100
  37. else
  38. chance = math.random(min2*100, max2*100)/100
  39. end
  40.  
  41. local multi = 99 / chance
  42. if (multi > 10) then
  43. nextbet = math.abs(round) / (multi - 1) * 2
  44. else
  45. nextbet = math.abs(round) / (multi - 1) * 1
  46. end
  47. end
  48. if (round == 0) then
  49. nextbet = balance / 1000000
  50. chance = math.random(min*100, max*100)/100
  51. bethigh = not bethigh
  52. end
  53. nextbet = math.max(nextbet, basebet)
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement