Advertisement
Baliarta

PANGGAH GAS

Mar 18th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. basebet = balance * 1e-8
  2. losecount = 0
  3. nextbet = basebet
  4. chancef = 99/25
  5. chance = chancef
  6. bethigh = true
  7. target = balance + 10
  8.  
  9. resetstats()
  10. function dobet()
  11.  
  12. if win then
  13. losecount = 0
  14. nextbet = basebet
  15. chance = chancef
  16. else
  17. losecount += 1
  18. chance = chance - (chance * (1.5/100))
  19. nextbet = previousbet + (previousbet * (25.6/100))
  20. end
  21.  
  22. if (losecount%25==0 and losecount > 0) then
  23. chance = chance + (chance * (15/100))
  24. end
  25.  
  26. if (losecount == 35) then
  27. chance = chance + (chance * (50/100))
  28. end
  29.  
  30. if (losecount == 45) then
  31. chance = chance + (chance * (45/100))
  32. end
  33.  
  34. if (losecount == 55) then
  35. chance = chance + (chance * (55/100))
  36. end
  37.  
  38. if balance > target then stop() end
  39. print("\n\n\n\n--")
  40. print("-=■ Profit \t[ "..string.format("%.8f",profit).."\t("..string.format("%.2f",profit/(balance-profit)*100).."%) ]")
  41.  
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement