Advertisement
coinwalk

best snowybot

Dec 31st, 2023
960
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var oldestbal = parseFloat(document.getElementById('pct_balance').value);
  2. var base = (oldestbal/100);
  3. var dodgey = (oldestbal/10);
  4. var bellance = oldestbal;
  5. var botplus = base;
  6. var trget = 200;
  7. var tens = (base*10);
  8. var sevens = (base*6.9);
  9. var eights  = (base*7.1)
  10. var dude = (base*40);
  11. var floatingbal = ((Math.floor(oldestbal/tens))*tens);
  12. var plane = 6.9;
  13. var submarine = 2.9;
  14. var betnext = ((botplus*1).toFixed(8));
  15. var james  = oldestbal;
  16.  
  17. function get(){
  18. console.clear();
  19. bellance = document.getElementById('pct_balance').value;
  20. if (bellance>(floatingbal+(botplus*plane))) {
  21.      botplus = botplus*2;
  22.      submarine = 4.9;
  23.      plane = 4.9;
  24.      floatingbal  = parseFloat(bellance);
  25. }
  26. if (bellance<(floatingbal-(botplus*submarine))) {
  27.      botplus = botplus*2;
  28.      submarine = 4.9;
  29.      plane = 4.9;
  30.      floatingbal  = parseFloat(bellance);
  31. }
  32. if (bellance>james){
  33.      james  = parseFloat(bellance);
  34. }
  35. if (((botplus*3)>=(dodgey))&&(bellance>=james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
  36.      botplus = base;
  37.      submarine = 2.9;
  38.      plane = 6.9;
  39.      floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  40.      james  = parseFloat(bellance);
  41. }
  42. if (((botplus*3)>=(bellance))&&(bellance<james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
  43.      botplus = base
  44.      submarine = 2.9;
  45.      plane = 6.9;
  46.      floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  47.      james  = parseFloat(bellance);
  48.      dodgey = (james/10);
  49. }
  50. if (bellance>=trget){
  51. console.log("winner winner");
  52. return;
  53. }
  54. betnext = ((botplus*1).toFixed(8));
  55. $('#pct_chance').val(49.5);
  56. $('#pct_bet').val(betnext);
  57. $('#a_hi').click();
  58. setTimeout(() => get(), 100);
  59. }
  60. get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement