Advertisement
coinwalk

c5 again 500k

Aug 27th, 2020
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 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 = 5;
  41. var nextbet;
  42. var fraction=500000;
  43. var basebet=longer/fraction;
  44. var more = document.getElementsByClassName("Numbers HighlightedText UserBalance")[0].innerText;
  45. var target = 500000;
  46.  
  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<50000){
  65. win=true;
  66. }else{
  67. win=false;
  68. }
  69.  
  70. if (win==false){
  71. botbuddy++;
  72. }
  73. if (botbuddy==9) {
  74. nextbet = previousbet*2
  75. botbuddy=0
  76. }
  77. if (nextbet==null) {
  78. nextbet = previousbet
  79. }
  80.  
  81. if (bal>more) {
  82. console.log('profit margin');
  83. botbuddy=0;
  84. nextbet=basebet
  85. more=parseFloat(bal)
  86. }
  87.  
  88. if (bal > target) {
  89. //stop();
  90. $('#notification').html('Relax & Reload');
  91. alert('Relax & Reload');
  92. console.log('Relax & Reload');
  93. return;
  94. }
  95. parseFloat(document.getElementById('BetSizeInput').value = (nextbet));
  96. $('#BetLowButton').click();
  97. }
  98. setInterval(() => dobet(), 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement