Advertisement
coinwalk

fbtc maybe errors

Dec 24th, 2023
719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var oldestbal = parseFloat(document.getElementById('balance').innerHTML);
  2. var james = oldestbal;
  3. var junky = oldestbal;
  4. var bear = true;
  5. var base = (oldestbal/80);
  6. var bellance = oldestbal;
  7. var botplus = base;
  8. var trget = parseFloat(oldestbal);
  9. var tens = (base*10);
  10. var sevens = (base*6.9);
  11. var eights  = (base*7.1)
  12. var floatingbal = 0;
  13. var betnext = ((botplus*1).toFixed(8));
  14. var fart = 1;
  15.  
  16.  function getR(minz, maxz) {
  17.   minz = Math.ceil(minz);
  18.   maxz = Math.floor(maxz);
  19.   return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  20. }
  21.  
  22. function makeid(length) {
  23.     var result = '';
  24.     var cha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  25.     var chaLength = cha.length;
  26.     for ( var ion = 0; ion < length; ion++ ){
  27.       result += cha.charAt(Math.floor(Math.random() *
  28.  chaLength));
  29.    }
  30.    return result;
  31. }
  32.  
  33. function bogus(){
  34. bellance = document.getElementById('balance').innerHTML;
  35. if ((bellance>(((Math.floor(bellance/tens))*tens)+sevens))&&(bellance<(((Math.floor(bellance/tens))*tens)+eights))&&(bellance!=floatingbal)) {
  36.      botplus = botplus*2;  
  37.      fart = 1;
  38.      floatingbal  = parseFloat(bellance);
  39. }
  40. if (((bellance-(james-tens))-(botplus*2))<=0)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  41.     botplus = base;
  42.     fart = 2;
  43.     floatingbal = 0;  
  44. }
  45. if (((botplus*2)>=tens)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  46.     botplus = base;
  47.     floatingbal = 0;
  48.     fart = 1;
  49.     james = ((Math.floor(bellance/tens))*tens);
  50. }
  51. if (bellance<=(james-(tens))){
  52.     james = ((Math.floor(bellance/tens))*tens);
  53.     botplus = base;
  54.     fart = 1;
  55.     floatingbal = 0;
  56. }
  57. return ((botplus*1).toFixed(8));
  58. }
  59.  
  60. var myseed;
  61.  
  62. function go() {
  63. var xol = getR(1,3);
  64. if (xol==1) {
  65. myseed = (makeid(5));
  66. }
  67. if (xol==2) {
  68. myseed = (makeid(7));
  69. }
  70. if (xol==3) {
  71. myseed = (makeid(9));
  72. }
  73. var xox = document.getElementById('balance').innerHTML;
  74. if ((xox==junky)&&(bear)){
  75. document.getElementById('next_client_seed').value = myseed;
  76. parseFloat(document.getElementById('double_your_btc_stake').value = bogus());
  77. parseFloat(document.getElementById('win_amount').innerHTML = bogus());
  78. document.getElementById('double_your_btc_bet_lo_button').click();
  79. bear = false;
  80. }
  81. if ((xox!=junky)&&(!bear)){
  82. junky = parseFloat(xox);
  83. bear = true;
  84. }
  85. if (xox>=(oldestbal*24)) {
  86. return;
  87. }
  88. setTimeout(() => go(), 1);
  89. }
  90. go();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement