Advertisement
coinwalk

snowy mega bot javascript

Oct 16th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. var belance = document.getElementById('pct_balance').value;
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var bob = (belance/50000).toFixed(8);
  5. var target = 50000;
  6. parseFloat(document.getElementById('pct_bet').value = bob);
  7. parseFloat(document.getElementById('pct_profit').value = bob);
  8. var old = document.getElementById('pct_balance').value;
  9. var olda = document.getElementById('pct_balance').value;
  10. var older = document.getElementById('pct_balance').value;
  11. var olderest = document.getElementById('pct_balance').value
  12. var x = bob
  13. var wall = document.getElementById('pct_balance').value;
  14. var balance=document.getElementById('pct_balance').value;
  15. var v = 10000000
  16. var win;
  17. var nextbet;
  18. var shit = false;
  19. var shity = false;
  20. var rnd=2;
  21. var zim;
  22.  
  23. function getR(min, max) {
  24. min = Math.ceil(min);
  25. max = Math.floor(max);
  26. return Math.floor(Math.random() * (max - min + 1)) + min;
  27. }
  28.  
  29. function dobet(){
  30. console.clear()
  31. balance = document.getElementById('pct_balance').value;
  32. var previousbet = document.getElementById('pct_bet').value;
  33. document.getElementById('pct_chance').value = 49.5;
  34. document.getElementById('pct_payout').value = 2;
  35. if (balance<(old-(x*4))) {
  36. nextbet = previousbet*2;
  37. x = nextbet;
  38. old = parseFloat(balance);
  39. }
  40. if (balance>old) {
  41. old = parseFloat(balance);
  42. }
  43. if (balance>(olda+(x*6))) {
  44. nextbet = previousbet*2;
  45. x = nextbet;
  46. olda = parseFloat(balance);
  47. }
  48. if (balance<olda) {
  49. olda = parseFloat(balance);
  50. }
  51. if (balance>older) {
  52. nextbet = bob;
  53. x = bob;
  54. old = parseFloat(balance);
  55. olda = parseFloat(balance);
  56. older = parseFloat(balance);
  57. rnd = getR(1,2);
  58. if (rnd==2){
  59. if (shity==false) {
  60. shit = true;
  61. shity = parseFloat(true);
  62. }else
  63. if (shity==true){
  64. shit = false;
  65. shity = parseFloat(false);
  66. }
  67. }}
  68. if (nextbet==null) {
  69. nextbet=previousbet;
  70. }
  71. if ((balance>=target)||(nextbet>balance)){
  72. //stop();
  73. $('#notification').html('Relax & Reload');
  74. alert('Relax & Reload');
  75. console.log('Relax & Reload');
  76. return;
  77. }
  78.  
  79. var freak = ((balance-olderest).toFixed(8));
  80. console.log("balance made");
  81. console.log(freak);
  82. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  83. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)));
  84. if (shit==false){
  85. $('#a_lo').click();
  86. }else if (shit==true){
  87. $('#a_hi').click();
  88. }}
  89. setInterval(() => dobet(), 1210);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement