Advertisement
coinwalk

fbtc without test

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