Advertisement
Baliarta

Jakop

Jan 30th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. betcalc = 0.2
  2.  
  3. -------------------------------------------
  4.  
  5.  
  6. nextbet = 0.000005
  7.  
  8. chance = 95
  9.  
  10. basebet = balance * (betcalc / 100000)
  11.  
  12. bethigh = true
  13.  
  14. losecount = 1
  15.  
  16. target = 100-- Doge
  17. tprofit = balance + target
  18.  
  19. function dobet()
  20.  
  21.  
  22. if(balance >= tprofit) then stop()
  23. print("Target Sudah Sesuai Dengan Modal :v GA lah GA")
  24.  
  25.  
  26. end
  27.  
  28. if (win) then
  29. chance = math.random(88,95)
  30.  
  31. nextbet = basebet
  32.  
  33. losecount = 0
  34.  
  35. end
  36.  
  37. if (!win) then
  38.  
  39. losecount += 1
  40.  
  41. if (losecount > 1) then
  42.  
  43. nextbet = previousbet*1.1
  44.  
  45. chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*20
  46.  
  47. if chance < 10.34 then
  48.  
  49. chance = 5.23 end
  50.  
  51. bethigh = !bethigh
  52.  
  53. print ("Temukan Loss Sebanyak Yang Kau Mau")
  54.  
  55. print(nextbet)
  56.  
  57. print(chance)
  58.  
  59. print(profit)
  60.  
  61. print(bets)
  62.  
  63. else
  64.  
  65. nextbet = previousbet*1.05
  66.  
  67. chance = (1/(((basebet+nextbet))/nextbet))*20
  68.  
  69. if chance<10.34 then
  70.  
  71. chance = 5.23 end
  72.  
  73. bethigh = !bethigh
  74.  
  75. print ("Temukan Loss Sebanyak Yang Kau Mau")
  76.  
  77. print(nextbet)
  78.  
  79. print(chance)
  80.  
  81. print(profit)
  82.  
  83. print(bets)
  84.  
  85. end
  86.  
  87. end
  88.  
  89.  
  90.  
  91. end
  92.  
  93.  
  94.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement