Advertisement
coinwalk

tampermonkey script for just-dice.com

Jan 18th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. // ==UserScript==
  2. // @name jd-snowybot
  3. // @version 3.14
  4. // @description snowys unique betting strategy for his manual in a bot!!
  5. // @author snowy
  6. // @match https://just-dice.com
  7. // ==/UserScript==
  8. var belance = parseFloat(document.getElementById('pct_balance').value);
  9. document.getElementById('pct_chance').value = 49.5;
  10. document.getElementById('pct_payout').value = 2;
  11. var snow = ((belance/50000).toFixed(8));
  12. var joe = snow;
  13. var target = 1000;
  14. var nucance;
  15. var upper = 6.9;
  16. var darn = 2.9;
  17. var rupt = (snow*10);
  18. var crud = (snow*6.9);
  19. var pok = rupt;
  20. var donce = false;
  21. var box = false;
  22. var citix = parseFloat(document.getElementById('pct_balance').value);
  23. var doper = parseFloat(document.getElementById('pct_balance').value);
  24. var jitix = parseFloat(document.getElementById('pct_balance').value);
  25. var jotox = parseFloat(document.getElementById('pct_balance').value);
  26. var have = parseFloat(document.getElementById('pct_balance').value);
  27. var pip = parseFloat(document.getElementById('pct_balance').value);
  28. var min = parseFloat(document.getElementById('pct_balance').value);
  29. var wild = parseFloat(document.getElementById('pct_balance').value);
  30. var olderest = parseFloat(document.getElementById('pct_balance').value);
  31. var dope = parseFloat(document.getElementById('pct_balance').value);
  32.  
  33. function getR(minz, maxz) {
  34. minz = Math.ceil(minz);
  35. maxz = Math.floor(maxz);
  36. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  37. }
  38.  
  39. function dobet() {
  40. setTimeout(function () {
  41. console.clear();
  42. document.getElementById('pct_chance').value = 49.5;
  43. document.getElementById('pct_payout').value = 2;
  44. doper = document.getElementById('pct_balance').value;
  45. if (doper>jitix) {
  46. dope = dope+(parseFloat(joe));
  47. jitix = parseFloat(doper);
  48. }
  49. if (doper<jitix) {
  50. dope = dope-(parseFloat(joe));
  51. jitix = parseFloat(doper);
  52. }
  53. if (nucance==null) {
  54. nucance = (parseFloat(joe));
  55. }
  56. if (dope>(have+(joe*upper))) {
  57. nucance = joe*2;
  58. joe = joe*2;
  59. upper = 4.9;
  60. darn = 4.9;
  61. have = parseFloat(dope);
  62. }
  63. if (dope<(have-(joe*darn))) {
  64. upper = 4.9;
  65. darn = 4.9;
  66. nucance = joe*2;
  67. joe = joe*2;
  68. pok = 0;
  69. have = parseFloat(dope);
  70. }
  71. if ((dope>=(jotox+pok))&&(nucance>=(snow*8))&&(dope<(jotox+(((Math.floor((dope-jotox)/rupt))*rupt)+crud)))) {
  72. have = jotox+((Math.floor((dope-jotox)/rupt))*rupt);
  73. jotox = jotox+((Math.floor((dope-jotox)/rupt))*rupt);
  74. snow = (((parseFloat(dope))/50000).toFixed(8));
  75. rupt = (snow*10);
  76. crud = (snow*6.9);
  77. upper = 6.9;
  78. darn = 2.9;
  79. donce = false;
  80. nucance = snow;
  81. joe = snow;
  82. pok = rupt;
  83. }
  84. if ((dope>=(jotox+pok))&&(nucance>=(snow*8))&&(dope>(jotox+(((Math.floor((dope-jotox)/rupt))*rupt)+crud)))) {
  85. have = jotox+((Math.floor((dope-jotox)/rupt))*rupt);
  86. jotox = jotox+((Math.floor((dope-jotox)/rupt))*rupt);
  87. snow = (((parseFloat(dope))/50000).toFixed(8));
  88. rupt = (snow*10);
  89. crud = (snow*6.9);
  90. donce = false;
  91. upper = 4.9;
  92. darn = 4.9;
  93. nucance = snow*2;
  94. joe = snow*2;
  95. pok = rupt;
  96. }
  97. if ((dope>target) ||(nucance>dope)){
  98. return;
  99. }
  100. if (dope>wild) {
  101. wild = parseFloat(dope);
  102. }
  103. if (dope<min) {
  104. min = parseFloat(dope);
  105. }
  106. var freak = ((dope-olderest).toFixed(8));
  107. console.log("balance made");
  108. console.log(freak);
  109. console.log("biggest balance");
  110. console.log((parseFloat(wild)).toFixed(8));
  111. console.log("lowest balance");
  112. console.log((parseFloat(min)).toFixed(8));
  113. parseFloat(document.getElementById('pct_bet').value = ((nucance*1).toFixed(8)));
  114. parseFloat(document.getElementById('pct_profit').value = ((nucance*1).toFixed(8)));
  115. $('#a_lo').click();
  116. }, 3000);}
  117. setInterval(() => dobet(), 8);
  118.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement