Advertisement
Baliarta

BETCALCT NJEPAT

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