Advertisement
coinwalk

muhahahaha

Sep 1st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. function resetseed(){
  2. var a=document.getElementsByClassName('ManualSeedControls')[0];
  3. if(!a)return;
  4. if(a.style.display!='block'){
  5. console.log('Enabling manual seed');
  6. if(document.getElementById('AccountTabManualSeed')){
  7. document.getElementById('AccountTabManualSeed').click();
  8. }
  9. resetseed();
  10. }
  11. }
  12. resetseed();
  13. function getR(min, max) {
  14. min = Math.ceil(min);
  15. max = Math.floor(max);
  16. return Math.floor(Math.random() * (max - min + 1)) + min;
  17. }
  18. function go () {
  19. var xol =getR(1,3);
  20. $('#LastBetInfoSecret').unbind('DOMSubtreeModified')
  21. onBetComplete = function(e){
  22. var myseed;
  23. if (xol==1) {
  24. myseed = getR(7777,9999);
  25. } else if (xol==2) {
  26. myseed = getR(50000,77777);
  27. } else {
  28. myseed = getR(50,99);
  29. }
  30. setTimeout(() => {
  31. $(".ManualSeedControls:visible input").val(myseed)}, 50);
  32. }
  33. $('#LastBetInfoSecret').bind('DOMSubtreeModified', onBetComplete );}
  34. setInterval(() => go(), 51);
  35.  
  36. Math.fmod = function (a,b) { return Number((a - (Math.floor(a / b) * b)).toPrecision(8)); }
  37. var good=document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  38. var longer=document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  39. var long=document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  40. var chance = 24;
  41. var nextbet;
  42. var fraction=512;
  43. var basebet=(longer/fraction);
  44. var more = document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  45. var target = (longer*2);
  46. var yo=0
  47. parseFloat(document.getElementById('BetSizeInput').value = (basebet));
  48.  
  49. var botbuddy=0
  50.  
  51. function dobet(){
  52. var secret=parseFloat($('#LastBetInfoSecret').html());
  53. var bal=(document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText);
  54. var previousbet=document.getElementById('BetSizeInput').value;
  55. document.getElementById('BetChanceInput').value = chance;
  56. if (bal>good){
  57. console.log('in profit by');
  58. console.log((bal-good).toFixed(8));
  59. }else{
  60. console.log('not in profit');
  61. console.log((bal-good).toFixed(8));
  62. }
  63.  
  64. if (secret>240000){
  65. botbuddy++;
  66. }
  67. if (botbuddy==8){
  68. nextbet=previousbet*2;
  69. botbuddy=0;
  70. yo++;
  71. }
  72. if (yo>=2){
  73. nextbet=previousbet;
  74. }
  75. if (nextbet==null) {
  76. nextbet = previousbet
  77. }
  78.  
  79. if (bal>more) {
  80. console.log('profit margin');
  81. nextbet=basebet
  82. yo=0;
  83. more=parseFloat(bal)
  84. }
  85.  
  86. if (bal > target) {
  87. //stop();
  88. $('#notification').html('Relax & Reload');
  89. alert('Relax & Reload');
  90. console.log('Relax & Reload');
  91. return;
  92. }
  93. parseFloat(document.getElementById('BetSizeInput').value = (nextbet));
  94. $('#BetLowButton').click();
  95. }
  96. setInterval(() => dobet(), 3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement