// ==UserScript== // @name fenix auto // @description 3||4||5 fenix // @include https://freebitco.in/* // @require https://greasyfork.org/scripts/439341-profitrunesfenix/code/profitrunesfenix.js?version=1013847 // @require https://greasyfork.org/scripts/439340-nextrun-1/code/nextrun-1.js?version=1013843 // @version 1.0.0 // @license MIT // @namespace Kaznacheev // @downloadURL none // ==/UserScript== var profit = prompt("укажите усредненный доход блока от 3 до 5 чтобы начать автоигру", "3"); $(document).ready(function($){ profitrunes(profit); $('#double_your_btc_bet_lo_button').click(); }); $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event) { if ($(event.currentTarget).is(':contains("lose")')) { next(); setTimeout($('#double_your_btc_bet_lo_button').click(),15000); } }); $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) { if ($(event.currentTarget).is(':contains("win")')) { profitrunes(profit); setTimeout($('#double_your_btc_bet_lo_button').click(),35000); } });