Advertisement
Baliarta

Set bang javer

Apr 15th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. --Kyo Watanabe
  2. --11-12-2022
  3. --Set Javer's
  4. --Edit Fast Profit / Rungkad
  5.  
  6. target = 50
  7. basebet = 0.0001
  8. basech = chance
  9. nembak = 10
  10. ls = 0
  11. chance = math.random(30,50)
  12.  
  13. nextbet = basebet
  14. chance = basech
  15.  
  16. resetstats()
  17. resetchart()
  18. --resetseed()
  19.  
  20.  
  21. function dobet()
  22.  
  23. bethigh = (math.random(100)>=35)
  24. chance = math.random(30,50)
  25.  
  26. if (balance > (balance + target)) then
  27. stop()
  28. end
  29. if (win) then
  30. chance = basech
  31. ls = 0
  32. if (partialprofit > 0) then
  33. nextbet = basebet
  34. resetpartialprofit()
  35. else
  36. nextbet = previousbet + (previousbet - (previousbet * 0.5))
  37. end
  38. else
  39. ls = ls + 1
  40. nextbet = previousbet * 1.5
  41.  
  42. if (ls == 6) then
  43. nextbet = nextbet + 0.001
  44. end
  45.  
  46. if (losses % nembak == 0) then
  47. chance = math.random(9,18)
  48. end
  49. end
  50.  
  51.  
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement