Advertisement
coinwalk

nice divide

Sep 1st, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 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 zim=999;
  43. var fraction=zim*longer;
  44. var basebet=(longer/fraction);
  45. var more = document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  46. var target = (longer*2);
  47. var yo=0
  48. parseFloat(document.getElementById('BetSizeInput').value = (basebet));
  49.  
  50. var botbuddy=0
  51.  
  52. function dobet(){
  53. var secret=parseFloat($('#LastBetInfoSecret').html());
  54. var bal=(document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText);
  55. var previousbet=document.getElementById('BetSizeInput').value;
  56. document.getElementById('BetChanceInput').value = chance;
  57. if (bal>good){
  58. console.log('in profit by');
  59. console.log((bal-good).toFixed(8));
  60. }else{
  61. console.log('not in profit');
  62. console.log((bal-good).toFixed(8));
  63. }
  64.  
  65. if (secret>240000){
  66. botbuddy++;
  67. }
  68. if (botbuddy==4){
  69. nextbet=previousbet*2;
  70. botbuddy=0;
  71. yo++;
  72. }
  73. if (yo>=3){
  74. nextbet=previousbet;
  75. }
  76. if (nextbet==null) {
  77. nextbet = previousbet
  78. }
  79.  
  80. if (bal>more*1.23) {
  81. console.log('profit margin');
  82. nextbet=basebet
  83. yo=0;
  84. more=parseFloat(bal)
  85. }
  86.  
  87. if (bal > target) {
  88. //stop();
  89. $('#notification').html('Relax & Reload');
  90. alert('Relax & Reload');
  91. console.log('Relax & Reload');
  92. return;
  93. }
  94. parseFloat(document.getElementById('BetSizeInput').value = (nextbet));
  95. $('#BetLowButton').click();
  96. }
  97. setInterval(() => dobet(), 3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement