// ==UserScript== // @name Freebitco.in Multiply By Chackman Ds. Mayo 2021 // @description https://www.facebook.com/groups/199437058833014 visit for script premium level // @author Chackman // @match https://freebitco.in/* // @grant none k // @create 19 de Abril del 2021 // @lastmodified // @version 1.1 // @compatible firefox Tested with Tampermonkey // @compatible chrome Tested with Tampermonkey // @namespace // @license GPL // @supportURL // @homepage // @home-url // @home-url2 // @homepageURL https://greasyfork.org/en/scripts/424479 // @copyright Chackman Desing 2021 // @run-at document-begin // @namespace https://greasyfork.org/users/754790 // @downloadURL https://update.greasyfork.icu/scripts/425496/Freebitcoin%20Multiply%20By%20Chackman%20Ds%20Mayo%202021.user.js // @updateURL https://update.greasyfork.icu/scripts/425496/Freebitcoin%20Multiply%20By%20Chackman%20Ds%20Mayo%202021.meta.js // ==/UserScript== // Donation 3LdEqqK5Jgj8Avc8m1Dvaw3qm6iox4xGi7 // Si no puedes contribuir con una donacion por favor hazte mi referido . // Prometo ir mejorandolo todos los meses .https://freebitco.in/?r=41639530 //Todo esto esta basado en mi experiencia de juego y mi experiencia como informático de primer nivel jajajaja!!! //******************** DEDICADO A MIS COJONES ************************** /*iniciamos toda esta movida de la ostia*/ function movida() { var body = $('body'); body.prepend( $('
').attr('style',"position:fixed;top:50px;left:20;z-index:999;width:400px;background-color:#227d5c;color: white; text-align: center;") .append( $('').attr('id','autofaucet') .append($(' text-align: center').text(" A Jugar a Jugar Pollo para Cenar!!!!... Decia un Cruiper de un barrio Chino. Chackman DS 2021 ©. ON Telegram: https://t.me/chackmandsplaymasterfreebitco")) .append($('') ) ).click(function(){ var $temp = $('').val("Chackman!!"); body.append($temp); $temp.select(); document.execCommand("copy"); $temp.remove(); }) ).prepend($('') .text("#autofaucet p { margin: 0; margin-left: 0px; text-align: center; }") ) //estrategia 1 comienza_estrategia(); } function comienza_estrategia() { //******************** Variables de Entorno ************************** var STRATEGY = 1 //Siempre en estrategia =1 no tocar o perderas // Exit Vars. **Primera condición cumplida, la multiplicación se detendrá** //[Aconsejable 250 Rollos Velocidad 2 || 600 Rollos Velocidad 3 var MAX_ROLLS_AT_MULTIPLY = 600; // cuántos rollos se multiplican. Jugará de forma segura hasta que gane o alcance maxbet. var MAX_PLAY =600; //Cuánto tiempo se juega BASE_BET. var MAX_WIN = 0.00010000; //Aqui no es relevante. No tocar var MAX_BET = 0.00004096; // No tocar // Montos de apuestas. var MIN_BET = 0.00000003; // Aqui indicamos donde empezara la apuesta a doblar var BAS_BET = 0.00000003 ; // Aqui este es el Base Set "Lo mejor que este igual" /*TODO ESTO ES PARTE DE LA ESTRATEGIA DE JUEGO*/ var ODDS = 1.01 //Probabilidades del juego de multiplicar. var INCR = 0; //Porcentaje de incremento en caso de pérdida. var HIGH_LOW = 0; //Puedes decidir cómo jugar; 0 aleatorio, 1 H, 2 L, 3 OLAER; //Poniendo esto MIN_LOSSES_BEFORE_PLAY = 1 jugamos como Los Pelayo en los Casinos!!! "NADA ES INFALIBLE PARTE DE ESA BASE"""" var MIN_LOSSES_BEFORE_PLAY = 0; // [0-1] Nivel de Agresividad . Pasar de este rango es muy arriesgado ya con 1 lo es. Solo pon 1 cuando lleves tiempo sin lanzarlo. var WAIT_PLAY_AFTER_LOSSES = 0; // Aqui no relevante Siempre en 0 no tocar. var MULTIPLY = true; var SPEED = 3; //Velocidad de multiplicar las apuestas en modo manual, 3 rápido, 2 medio, 1 humano, 0 más lento // ** Logging var LOGGING = 5; //0 Es TraZA, 5 Es debug // Constantes de sistema // var dateTimeFormat = new Intl.DateTimeFormat('en', { year: 'numeric', month: 'short', day: '2-digit', hour: 'numeric', minute: 'numeric', hour12: false }); // System Variables // var reward_points=0; var ads_closed=0; //Numeros de ADS que cerramos. var rand = 0; var r = 0; var rollTryCount=0; var bandera ='0'; // Multiply global variables var isMultiplyRunning = false; var isMultiplyPlayable=false; var forceMultiplyStopHard=false; var forceMultiplyStopSoft=false; var game_play_began=false; var game2_consecutive_lost_passed=false; var game2_finished_loosing=false; var game2_play_after_losses=0; var game2_step=0; var game_play_count=0; // History Array Variables var rp_hist_arr = []; var multiply_hist_arr = []; // COOKIES Variables and Retrieve // var tot_exec = getCookie("executions"); var tot_btc_winning_rolling = getCookie('tot_btc_winning_rolling'); var tot_lottery_winning_rolling = getCookie('tot_lottery_winning_rolling'); var tot_rp_winning_rolling = getCookie('tot_rp_winning_rolling'); var tot_lottery_tickets = getCookie('tot_lottery_tickets'); var tot_rp_spent_rewards = getCookie('tot_rp_spent_rewards'); var tot_rp_spent_captcha = getCookie('tot_rp_spent_captcha'); var tot_multiply_balance = getCookie('tot_multiply_balance'); var tot_multiply_games = getCookie('tot_multiply_games'); var tot_multiply_bets = getCookie('tot_multiply_bets'); var tot_multiply_play = getCookie('tot_multiply_play'); var tot_multiply_wagered = getCookie('tot_multiply_wagered'); var max_consecutive_losts = getCookie('max_consecutive_losts'); var max_consecutive_losts_inplay = getCookie('max_consecutive_losts_inplay'); var executions = getCookie('executions'); var last_bonus = getCookie("last_bonus"); var last_multiply = getCookie("last_multiply"); var jackpot_distance = getCookie("jackpot_distance"); var rp_hist_str = getCookie("rp_hist_arr"); var multiply_hist_str = getCookie('multiply_hist_arr'); var referrer = getCookie("referrer"); if ( isNaN(parseFloat(tot_multiply_balance)) ) tot_multiply_balance = 0; // can be negative if ( isNaN(jackpot_distance )) jackpot_distance = 0; if (! (tot_btc_winning_rolling > 0)) tot_btc_winning_rolling = 0; if (! (tot_lottery_winning_rolling > 0)) tot_lottery_winning_rolling = 0; if (! (tot_rp_winning_rolling > 0)) tot_rp_winning_rolling = 0; if (! (tot_lottery_tickets > 0)) tot_lottery_tickets = 0; if (! (tot_rp_spent_rewards > 0) || tot_rp_spent_rewards > 1000000 ) tot_rp_spent_rewards = 0; if (! (tot_rp_spent_captcha > 0)) tot_rp_spent_captcha = 0; if (! (max_consecutive_losts > 0)) max_consecutive_losts = 0; if (! (max_consecutive_losts_inplay >0)) max_consecutive_losts_inplay=0; if (! (tot_multiply_bets > 0)) tot_multiply_bets = 0; if (! (tot_multiply_wagered > 0)) tot_multiply_wagered = 0; if (! (tot_multiply_games > 0)) tot_multiply_games = 0; if (! (tot_multiply_play > 0)) tot_multiply_play = 0; if (! (executions > 0)) executions = 0; if (! (last_bonus > 0)) last_bonus = 0; if (! (last_multiply > 0)) last_multiply = 0; if ( rp_hist_str.length != 0 ) { rp_hist_arr = JSON.parse(rp_hist_str); if (!Array.isArray(rp_hist_arr)) { rp_hist_arr = []; } rp_hist_arr = rp_hist_arr.slice(-64); //console.log("%cRP Hist Array: "+rp_hist_arr, 'color:grey'); } if ( multiply_hist_str.length != 0) { multiply_hist_arr = JSON.parse(multiply_hist_str); if (!Array.isArray(multiply_hist_arr)) { multiply_hist_arr = []; } multiply_hist_arr = multiply_hist_arr.slice(-128); } // END COOKIES //cript_output_33 (function() { setTimeout(function(){ showStatus(); }, 1000 ); setTimeout(function(){ setBtcPrice(); }, 3000 ); // Update BTC Price every 10s setInterval(function(){ // Update website stats UpdateStats(); setTimeout(function(){ setBtcPrice(); }, 10000 ); }, 600000); setInterval(function(){ closePopupInterval($('#myModal22 .close-reveal-modal')); closePopupInterval($('.pushpad_deny_button')); }, 20000 ); setInterval(function(){ showStatus(); }, 1800000); })(); // ******** MULTIPLY GAME INICIO DE LA LOGICA DE JUEGO ********* // Pre arranque y selector function multiply_manual() { var bet_count=0; var bet_remaining=0; var past_bet; var bet_amount; var bet_odds; var bet_hilo; var winnings=0; var won=0; // won lost or error -1, 1 or 0 var consecutive_lost=0; var consecutive_win=0; var total_lost=0; var autoex_profit =0; var clanza =0; var fast_bet=false; var log_msg = ""; var c; var multiply_message=""; var curr_multiply_balance=0; var curr_multiply_wagered = 0; var indicador =0; var max_consecutive_losts_session=0; var max_consecutive_wins_session=0; var max_consecutive_losts_inplay_session=0; var max_bet_session=0; var last_session_hist=[]; var balance = parseFloat($('#balance').text()).toFixed(8); // Global vars setting to avoid duplicate games and increments. // as error reported bug on play game2_consecutive_lost_passed=false; game2_finished_loosing=false; game2_play_after_losses=0; game2_step=0; forceMultiplyStopHard=false; forceMultiplyStopSoft=false; game_play_began=false; game_play_count=0; isMultiplyRunning = true; if ( $('#multiply_full_container').length) { multiply_message = "Running!"; $('#multiply_message').html(multiply_message); } // Activate DOM Monitors /// *** NEW VERSION *** if (LOGGING > 4) console.log("[Multiply] Activating MutationObserver Monitors, beginning to play"); const targetNode = document.getElementById('double_your_btc_result'); const config = { attributes: true, childList: true, subtree: true }; const callback = function(mutationsList, observer) { //if (LOGGING > 4) console.log("%cDom modified.", "color: grey"); if ( $('#double_your_btc_error').html().length > 0 ) { var multiply_error = $('#double_your_btc_error').html(); console.log('%c[Multiply] Fatal Error in multiply: '+multiply_error, 'color: red'); //$('#script_output_title_multiply_wait_hours').text('Fatal Error').removeClass(true).addClass('false'); setCookie('multiply_error', multiply_error, 31); multiply_message = "Finish for some error"; multiplyEndGame(bet_amount, bet_count, consecutive_lost, curr_multiply_balance, observer, multiply_message); return true; } else if ( $("#double_your_btc_bet_win").html().length > 0 ) { won = 1; c="green"; fast_bet = true; var windummy=$("#double_your_btc_bet_win"); console.log('win '+ windummy); /***********************************************AQUI*************************************/ /************************************************************************************/ setInterval(function(){bet_odds=2.02;INCR=102;},90000); setInterval(function(){bet_odds=2.03;INCR=53;},180000); setInterval(function(){bet_odds=2.05;INCR=48.03;},210000); //setInterval(function(){bet_odds=10;INCR=9.03;},100000); /***********************************************************************************/ winnings = $("#double_your_btc_bet_win").html().split(" ")[6]; if (winnings > 0) { tot_multiply_balance = parseFloat(parseFloat(tot_multiply_balance) + parseFloat(winnings)).toFixed(8); curr_multiply_balance = parseFloat(parseFloat(curr_multiply_balance) + parseFloat(winnings)).toFixed(8); console.log('tot_multiply_balance'+tot_multiply_balance); console.log('curr_multiply_balance'+curr_multiply_balance); } console.log('consecutive_win'+consecutive_win); consecutive_win++; autoex_profit++; consecutive_lost=0; var dummy; /**********************************************************************************************/ if (clanza >=50) { bet_odds=1.02; INCR=7.02; clanza =0; } clanza++; console.log('tot_multiply_balance'+tot_multiply_balance); console.log('curr_multiply_balance'+curr_multiply_balance); //console.log('lanza' + clanza ); setInterval(function(){dummy=0;},1000); // setInterval(function(){bet_odds=1.01;INCR=15.09;},180000); /**********************************************************************************************/ if ( $('#multiply_full_container').length) { $('#multiply_cons_wins > b').html(consecutive_win).addClass("green-bg"); setTimeout(function () { $("#multiply_cons_wins > b").removeClass("green-bg"); },500); } } else if ($("#double_your_btc_bet_lose").html().length > 0 ) { won = -1; c = "red"; winnings = $("#double_your_btc_bet_lose").html().split(" ")[6]; if (winnings > 0) { tot_multiply_balance = parseFloat(parseFloat(tot_multiply_balance) - parseFloat(winnings)).toFixed(8); curr_multiply_balance = parseFloat(parseFloat(curr_multiply_balance) - parseFloat(winnings)).toFixed(8); } consecutive_lost++; total_lost++; consecutive_win=0; if ( $('#multiply_full_container').length) { $('#multiply_cons_losts > b').html(consecutive_lost).addClass("red-bg"); setTimeout(function () { $("#multiply_cons_losts > b").removeClass("red-bg"); },500); } } else won = 0; var amount = parseFloat(bet_amount).toFixed(8); var max_partida = parseFloat(MAX_BET).toFixed(8); // console.log('bet_amount '+amount); // console.log('max_partida '+ max_partida); console.log('Total partidas '+ bet_count); /*****************************************************************************************/ /**********************************super salida forzada **********************************/ /*Todo esto esta pensando por si nos redirecionan*/ if (amount >=max_partida) { forceMultiplyStopHard=true; console.log('Salida Forzada por superar Apuesta maxima'); } if (bet_count >= MAX_ROLLS_AT_MULTIPLY) { forceMultiplyStopHard=true; console.log('Salida Forzada por Alcanzar el maximo de Rollos'); } if (won != 0) { // COOKIES for STATISTICS setCookie("tot_multiply_balance", tot_multiply_balance, 7); setCookie('curr_multiply_balance',curr_multiply_balance,7); var rolled = $('#previous_roll').text(); last_session_hist.push(Math.round(curr_multiply_balance*100000000)); setCookie('last_multiply_session_hist',JSON.stringify(last_session_hist),7) // Session Cookie if (consecutive_lost >= max_consecutive_losts_session) { max_consecutive_losts_session=consecutive_lost; setCookie('max_consecutive_losts_session', max_consecutive_losts_session, 7); } if (consecutive_lost >= max_consecutive_losts_inplay_session && bet_amount > MIN_BET) { max_consecutive_losts_inplay_session=consecutive_lost; setCookie('max_consecutive_losts_inplay_session',max_consecutive_losts_inplay_session,7); } if (bet_amount >= max_bet_session) { max_bet_session=parseFloat(bet_amount).toFixed(8); setCookie('max_bet_session',max_bet_session,7); } // General Cookies if (consecutive_lost > max_consecutive_losts_inplay && bet_amount > MIN_BET) { max_consecutive_losts_inplay = consecutive_lost; setCookie('max_consecutive_losts_inplay',max_consecutive_losts_inplay,7); } if (consecutive_lost > max_consecutive_losts) { max_consecutive_losts=consecutive_lost; setCookie('max_consecutive_losts', consecutive_lost, 365); } if ( rolled != '7777' ){ jackpot_distance++; setCookie('jackpot_distance', jackpot_distance, 31); } if ( $('#multiply_full_container').length) { // Update the values $('#multiply_bet_count > b').html(bet_count).addClass("green-bg"); setTimeout(function () { $("#multiply_bet_count > b").removeClass("green-bg"); },200); $('#multiply_play_count > b').html(game_play_count); $('#multiply_max_cons_losts > b').html(max_consecutive_losts_session); $('#multiply_max_bet > b').html(max_bet_session); $('#balance_before > b').html(balance); $('#balance_now > b').html(parseFloat($('#balance').text()).toFixed(8)); $('#multiply_wagered > b').html(curr_multiply_wagered); $('#multiply_profit > b').html(curr_multiply_balance); } // Next bet values getting It return a FLOAT number. Will be converted in bet function. bet_amount = get_bet_amount( past_bet, consecutive_lost, consecutive_win); bet_hilo = get_bet_hilo(consecutive_lost); //bet_odds = get_bet_odds(); if (LOGGING > 2) { log_msg = "Rolled:"+rolled+",%c Won:"+parseFloat(winnings).toFixed(8)+"%c, Played#:"+bet_count; log_msg += "/"+MAX_ROLLS_AT_MULTIPLY+"/"+game_play_count+", L/W: "+consecutive_lost+"/"+consecutive_win; log_msg += ", CurrBal:"+curr_multiply_balance+", TotBal:"+tot_multiply_balance; log_msg += "