Advertisement
coinwalk

manual snowybot just-dice.com browser console bot

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