Advertisement
Baliarta

FAST 01

Feb 4th, 2023
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. function incr(x,y)
  2. return x + (x * (y/100))
  3. end
  4.  
  5. function decr(x,y)
  6. return x - (x * (y/105))
  7. end
  8.  
  9. simplestats_balhi = balance
  10. simplestats_balst = balance
  11. simplestats_maxdrop,simplestats_profitc = 0,0
  12. function fn_simplestats()
  13. simplestats_profitc += currentprofit
  14. if (simplestats_profitc >= 0) then
  15. simplestats_profitc = 0
  16. simplestats_balhi = balance
  17. end
  18. simplestats_drop = simplestats_balhi - balance
  19. if (simplestats_drop > simplestats_maxdrop) then
  20. simplestats_maxdrop = simplestats_drop
  21. end
  22. print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  23. print("░▒▓- Dropdown \t[ "..string.format("%.8f",simplestats_maxdrop).."\t"..string.format("%.2f",simplestats_maxdrop/simplestats_balst*100).."% ]")
  24. end
  25.  
  26. target = balance * 91.4
  27. basebet = 1e-8
  28. betlose = 0
  29. sumlose = 0
  30. nextbet = basebet
  31. chance = 25
  32. resetchart()
  33. resetstats()
  34. function dobet()
  35. if win then
  36. betlose = 0
  37. nextbet = basebet
  38. else
  39. sumlose += 1
  40. betlose += 1
  41. chance = decr(chance, 1.5)
  42. nextbet = incr(nextbet, 15.6)
  43. if (sumlose%25 == 0) then chance = incr(chance, 10) end
  44. if (betlose == 35) then chance = incr(chance, 43) end
  45. if (betlose == 45) then chance = incr(chance, 32) end
  46. if (betlose == 55) then chance = incr(chance, 42) end
  47. end
  48. if balance > target then stop() end
  49. print("\n\n░▒▓█ PADEPOKAN DADU █▓▒░\n")
  50. fn_simplestats()
  51. print("\n")
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement