Advertisement
Baliarta

TEST MOD 217 BARBAR

May 25th, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. TesModal = 217
  2. BaseTrade = 0.000000021700
  3. Chance1 = 2
  4. Chance2 = 20
  5. ResetIfwin = 2
  6. ifwin = 0.42
  7. iflos = 1.27
  8. AutoShootIfLose = 38
  9. BetShoot = 3.255
  10. ResetBasebetIfProfit = 0.000001085000
  11.  
  12. c1 = Chance1*100
  13. c2 = Chance2*100
  14. cb = 100
  15. chance = math.random(c1,c2)/cb
  16. div = TesModal / BaseTrade
  17. base = balance / div
  18. nextbet = base
  19. betshot = balance / (TesModal/BetShoot)
  20.  
  21. pr = 0
  22. opit1 = balance / (TesModal/ResetBasebetIfProfit)
  23. rifw = 0
  24.  
  25. shotiflos1 = 0
  26. shotiflos2 = AutoShootIfLose
  27.  
  28. prebet = 0.00000001
  29.  
  30. target = balance+1281
  31. stoplos = 0
  32.  
  33. bethigh = false
  34. if nextbet < prebet then nextbet = prebet end
  35.  
  36. sid1 = 0
  37. sid2 = 500
  38.  
  39. resetstats()
  40. --resetseed()
  41.  
  42. function dobet()
  43. sleep(0.15)
  44. sid1 += 1
  45. sid2 = math.random (400,600)
  46. if sid1 >= sid2 then
  47. resetseed()
  48. sid1=0 end
  49.  
  50. if math.random(1,2) == 1 then bethigh = true else bethigh = false end
  51.  
  52. base = balance / div
  53. chance = math.random(c1,c2)/cb
  54.  
  55. if win then
  56. rifw += 1
  57. nextbet = previousbet*ifwin
  58. if rifw == ResetIfwin then nextbet = base
  59. rifw = 0 end
  60. shotiflos1 = 0
  61. else
  62. rifw = 0
  63. nextbet = previousbet*iflos
  64. shotiflos1 += 1
  65. if shotiflos1 == shotiflos2 then nextbet = betshot end
  66. end
  67.  
  68. pr += lastBet.profit
  69. if pr >= opit1 then nextbet = base
  70. pr = 0 end
  71.  
  72. if nextbet < prebet then nextbet = prebet end
  73. if balance <= stoplos then stop() end
  74. if balance >= target then stop() end
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement