Advertisement
Baliarta

HIGHRISK OPIT BNYAK

Feb 11th, 2023
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. resetstats()
  2. startbalance = balance
  3. m1 = 1.1
  4. m2 = 1.65
  5. roundprofit = 0
  6. n = 0.01
  7. base = n
  8. nextbet = base
  9. chance1 = math.random(5,9)
  10. chance2 = math.random(19,20)
  11. l = 0
  12. stop_profit = balance + 100.01
  13. bethigh = true
  14. chance = chance1
  15. function dobet()
  16.  
  17. if balance > stop_profit then
  18. stop()
  19. end
  20. l += 1
  21. r = math.random(100)
  22. chance1 = math.random(5,9)
  23. chance2 = math.random(19,20)
  24.  
  25. if win then
  26. l = 0
  27. s = 0
  28. base = n
  29. nextbet = base
  30. chance = chance1
  31. bethigh = !bethigh
  32. end
  33.  
  34. if (l == 0) then
  35. chance = chance1
  36. base = n
  37. nextbet = base
  38. else
  39. nextbet = previousbet * m1
  40. chance = chance1
  41. end
  42.  
  43. if (l == 20) then
  44. nextbet = previousbet * m2
  45. chance = chance2
  46. end
  47.  
  48. if (l > 20) then
  49. chance2 = math.random(19,20)
  50. chance = chance2
  51. nextbet = previousbet * m2
  52. if (r > 50) then
  53. bethigh = true
  54. else
  55. bethigh = false
  56. end
  57. end
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement