Advertisement
Baliarta

Sc SWITH

Feb 13th, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. basebet = 1e-7
  2. payout = math.random(5,10)
  3. chance = 99 / payout
  4. won = 0
  5. lost = 0
  6. ls = 0
  7. target = balance * 1.1 --target profit
  8. stoplos = balance * 0.5 --stoploss
  9. tpsesi = balance * 0.01 --sesi profit
  10. rolls = 0
  11. cprofit = 0
  12. bethigh = true
  13. cls = 0
  14.  
  15. if balance > 10 and balance < 100 then
  16. startbet = balance * 1e-6
  17. elseif balance > 100 then
  18. startbet = balance * 1e-7
  19. elseif balance > 1000 then
  20. startbet = balance * 1e-8
  21. else
  22. startbet = balance * 1e-5
  23. end
  24.  
  25. nextbet = startbet
  26.  
  27. function dobet()
  28. if balance > target then
  29. if (currency == "usdt") then
  30. currency = "trx"
  31. else
  32. currency = "usdt"
  33. end
  34. resetstats()
  35. resetseed()
  36. cprofit = 0
  37. sleep(60000)
  38. target = balance * 1.1 --target profit
  39. stoplos = balance * 0.5 --stoploss
  40. tpsesi = balance * 0.01 --sesi profit
  41. end
  42. if balance < stoplos then
  43. --stop()
  44. if (currency == "usdt") then
  45. currency = "trx"
  46. else
  47. currency = "usdt"
  48. end
  49. resetstats()
  50. resetseed()
  51. cprofit = 0
  52. sleep(60000)
  53. target = balance * 1.1 --target profit
  54. stoplos = balance * 0.5 --stoploss
  55. tpsesi = balance * 0.01 --sesi profit
  56. end
  57. cprofit += currentprofit
  58. ls += 1
  59. won += 1
  60. lost += 1
  61. rolls += 1
  62. if win then
  63. nextbet = startbet
  64. if chance > 12 then
  65. if (ls > 0 and ls < 10) then
  66. cls += 1
  67. end
  68. if cls > 2 then
  69. cls = 0
  70. boom = previousbet * 2
  71. nextbet = boom
  72. end
  73. end
  74. ls = 0
  75. else
  76. cekls = ls / 18
  77. if cekls < 1 then
  78. multi0 = (chance/100) * 1.25
  79. multi = 1+multi0
  80. elseif (cekls > 1 and cekls < 3) then
  81. multi0 = (chance/100) * 1.5
  82. multi = 1+multi0
  83. else
  84. multi0 = (chance/100) * 2
  85. multi = 1+multi0
  86. end
  87. nextbet = previousbet * multi
  88. end
  89.  
  90. if cprofit > tpsesi then
  91. sleep(30000)
  92. cprofit = 0
  93. payout = math.random(500,1700)/100
  94. chance = 99 / payout
  95. nextbet = startbet
  96. target = balance * 1.1 --target profit
  97. stoplos = balance * 0.5 --stoploss
  98. tpsesi = balance * 0.01 --sesi profit
  99. end
  100. powerls = balance / nextbet
  101. print("\n\n░▒▓█ Test Nyekrip █▓▒░\n")
  102. print("░▒▓- Currency \t[ "..currency.." ]")
  103. print("░▒▓- Target \t[ "..string.format("%.8f",target).." ]")
  104. print("░▒▓- Power LS \t[ "..string.format("%.2f",powerls).." ]")
  105. print("░▒▓- TP Sesi \t[ "..string.format("%.8f",tpsesi).." ]")
  106. print("░▒▓- Sesi Profit \t[ "..string.format("%.8f",cprofit).." ]")
  107. print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  108. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement