Advertisement
coinwalk

best snowybot now good

Dec 31st, 2023
1,034
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/1000); //dont change;
  3. var bellance = oldestbal;
  4. var botplus = base;
  5. var trget = parseFloat(oldestbal);
  6. var tens = (base*10);
  7. var sevens = (base*3.9);
  8. var eights  = (base*7.1)
  9. var dude = (base*100);
  10. var floatingbal = oldestbal;
  11. var plane = 6.9;
  12. var submarine = 2.9;
  13. var mother = (((Math.ceil(oldestbal/tens))*tens)+dude)
  14. var father = oldestbal;
  15. var james = (((Math.ceil(oldestbal/tens))*tens)-dude);
  16. var fran = oldestbal;
  17. var betnext = ((botplus*1).toFixed(8));
  18.  
  19. function get(){
  20. console.clear();
  21. bellance = document.getElementById('pct_balance').value;
  22. var good = ((bellance-oldestbal).toFixed(8));
  23. console.log("profit");
  24. console.log(good);
  25. if (bellance>(floatingbal+(botplus*plane))){
  26.     plane = 4.9;
  27.     submarine = 4.9;
  28.     botplus = botplus*2;
  29.     floatingbal = parseFloat(bellance);
  30. }
  31. if (bellance<(floatingbal-(botplus*submarine))){
  32.     plane = 4.9;
  33.     submarine = 4.9;
  34.     botplus = botplus*2;
  35.     floatingbal = parseFloat(bellance);
  36. }
  37. if ((((bellance-james)-(botplus*16.9))<=0)&&(bellance<father)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  38.     botplus = base;
  39.     plane = 6.9;
  40.     submarine = 2.9;
  41.     father = parseFloat(bellance);
  42.     mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
  43.     floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  44.     james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
  45. }
  46. if ((((bellance-mother)+(botplus*16.9))>=0)&&(bellance>=father)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  47.     botplus = base;
  48.     plane = 6.9;
  49.     submarine = 2.9;
  50.     father = parseFloat(bellance);
  51.     mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
  52.     floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  53.     james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
  54. }
  55. if ((botplus>=(base*2))&&(bellance>=fran)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  56.     botplus = base;
  57.     plane = 6.9;
  58.     submarine = 2.9;
  59.     father = parseFloat(bellance);
  60.     mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
  61.     floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  62.     james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
  63.     fran = parseFloat(bellance);
  64. }
  65. if (bellance>(trget*24)){
  66. console.log("winner winner");
  67. return;
  68. }
  69. betnext = ((botplus*1).toFixed(8));
  70. $('#pct_chance').val(49.5);
  71. $('#pct_bet').val(betnext);
  72. $('#a_hi').click();
  73. setTimeout(() => get(), 100);
  74. }
  75. get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement