Advertisement
coinwalk

snowybot technical v4

Apr 16th, 2022
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. var bolank = document.getElementById('pct_balance').value;
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var bob = 0.001;
  5. var basebet = bob;
  6. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  7. var cript = bob;
  8. var god = (bob*3);
  9. var sin = 7;
  10. var joe = (bob*10);
  11. var target = 300;
  12. var sev = 0;
  13. var stuff = 0;
  14. var olderest = document.getElementById('pct_balance').value
  15. var balancez = parseFloat(document.getElementById('pct_balance').value);
  16. var have = parseFloat(document.getElementById('pct_balance').value);
  17. var v = parseFloat(document.getElementById('pct_balance').value);
  18. var emy = parseFloat(document.getElementById('pct_balance').value);
  19. var ian = parseFloat(document.getElementById('pct_balance').value);
  20. var mybet;
  21. var wild = document.getElementById('pct_balance').value;
  22. var min = document.getElementById('pct_balance').value;
  23. parseFloat(document.getElementById('pct_bet').value = bob);
  24. parseFloat(document.getElementById('pct_profit').value = bob);
  25.  
  26. function getR(minz, maxz) {
  27. minz = Math.ceil(minz);
  28. maxz = Math.floor(maxz);
  29. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  30. }
  31.  
  32. function dobet(){
  33. console.clear()
  34. var balancey = document.getElementById('pct_balance').value;
  35. balancez = document.getElementById('pct_balance').value;
  36. var stuit = document.getElementById('pct_bet').value;
  37. document.getElementById('pct_chance').value = 49.5;
  38. document.getElementById('pct_payout').value = 2;
  39. if (mybet==null) {
  40. mybet = stuit;
  41. }
  42. if ((balancey<=(have-god))&&(sev==0)) {
  43. mybet = (stuit*2);
  44. cript = (stuit*2);
  45. god = (stuit*5);
  46. joe = 0;
  47. sin = 7;
  48. stuff = 0;
  49. sev = sev+1;
  50. have = parseFloat(balancez);
  51. }
  52. if ((balancey<=(have-god))&&(sev>=2)) {
  53. mybet = (stuit*2);
  54. cript = (stuit*2);
  55. god = (stuit*5);
  56. joe = 0;
  57. sin = 6;
  58. stuff = 0;
  59. sev = sev+1;
  60. have = parseFloat(balancez);
  61. }
  62. if ((balancey<=(have-god))&&(sev==1)) {
  63. mybet = bob;
  64. cript = bob;
  65. god = (bob*4);
  66. joe = 0;
  67. sin = 6;
  68. stuff = 0;
  69. sev = sev+1;
  70. have = parseFloat(balancez);
  71. }
  72. if (balancez>=(have+(cript*sin))) {
  73. mybet = (stuit*2);
  74. cript = (stuit*2);
  75. sin = 6;
  76. god = (stuit*5);
  77. stuff = stuff+1;
  78. have = parseFloat(balancez);
  79. }
  80. if (balancey>=(ian+(joe))) {
  81. mybet = bob;
  82. cript = bob;
  83. god = (bob*3);
  84. sev = 0;
  85. sin = 7;
  86. stuff = 0;
  87. have = (ian+joe);
  88. ian = ian+joe;
  89. joe = (bob*10);
  90. }
  91. if (balancez>=target) {
  92. //stop();
  93. return;
  94. }
  95. if (balancez>wild) {
  96. wild = parseFloat(balancez);
  97. }
  98. if (balancez<min) {
  99. min = parseFloat(balancez);
  100. }
  101. var freak = ((balancez-olderest).toFixed(8));
  102. console.log("balance made");
  103. console.log(freak);
  104. console.log("biggest balance");
  105. console.log(parseFloat(wild));
  106. console.log("lowest balance");
  107. console.log(parseFloat(min));
  108. parseFloat(document.getElementById('pct_bet').value = mybet);
  109. parseFloat(document.getElementById('pct_profit').value = mybet);
  110. $('#a_lo').click();
  111. }
  112. setInterval(() => dobet(), 1200);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement