Baliarta

WAGEREN

Aug 17th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. div = 1000
  2. maxc = 5
  3. chance = 70
  4. bb = 12 / div
  5. po = 99.9 / chance
  6. count = 0
  7. profitc = 0
  8. nextbet = bb
  9. limit = 50
  10. trail = -limit
  11. stopls = -limit
  12.  
  13. function dobet()
  14. profitc += currentprofit
  15. count +=1
  16. if profitc >= 0 then
  17. profitc *= 0.9
  18. stopls = trail + profit
  19. end
  20. nextbet *= po
  21. if (count == maxc) then
  22. count = 0
  23. nextbet = -profitc/(((1-po^maxc)/(1-po)) * (po-1))
  24. if (-profitc+nextbet) > (20/100)*(limit) then
  25. nextbet = (-profitc/3)/(((1-po^maxc)/(1-po)) * (po-1))
  26. end
  27. end
  28. if nextbet < bb then nextbet = bb end
  29. if balance - nextbet < stopls then stop() end
  30. end
Add Comment
Please, Sign In to add comment