supersnowzy

martin snowy

Jan 30th, 2023
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. var belance = parseFloat(document.getElementById('pct_balance').value);
  2. var bolence = parseFloat(document.getElementById('pct_balance').value);
  3. var bigance = parseFloat(document.getElementById('pct_balance').value);
  4. var store = parseFloat(document.getElementById('pct_balance').value);
  5. document.getElementById('pct_chance').value = 49.5;
  6. document.getElementById('pct_payout').value = 2;
  7. var basebet = belance/144000
  8. var lost = 0;
  9. var betslost = 1;
  10. var newbe = basebet;
  11. var target = 100;
  12.  
  13. function dobet(){
  14. bolence = document.getElementById('pct_balance').value;
  15. if (bolence>bigance) {
  16. lost = 0;
  17. betslost = 1;
  18. newbe = basebet;
  19. store = parseFloat(bolence);
  20. bigance = parseFloat(bolence);
  21. }
  22. if (bolence<bigance) {
  23. lost = (store-bolence);
  24. bestlost = betslost+1;
  25. newbe = (lost+(betslost*basebet));
  26. bigance = parseFloat(bolence);
  27. }
  28. if (bolence>=target) {
  29. return;
  30. //stop();
  31. }
  32. parseFloat(document.getElementById('pct_bet').value = (((parseFloat(newbe))*1).toFixed(8)));
  33. parseFloat(document.getElementById('pct_profit').value = (((parseFloat(newbe))*1).toFixed(8)));
  34. $('#a_lo').click();
  35. }
  36. setInterval(() => dobet(), 1000);
Add Comment
Please, Sign In to add comment