pridu69 Posted 20 Jul 2023, 15:57 Posted 20 Jul 2023, 15:57 https://blogauto.xyz/?r=153 Денег мало, но можно просто повесить страничку в фон и она будет фармить. Тыща клаймов по 0.00002578 TRX, если они закончатся еще есть LTC и Matic Подобные краны работают с ТаймХуреком и можно было клаймить их не раз в минуту, а раз быстрее. Все зависит от того какое ускорение вы поставите.
pridu69 Posted 21 Jul 2023, 20:19 Author Posted 21 Jul 2023, 20:19 Для тех, кто не хочет мучится с таймхукером и не боится бана ? а кто его боится на таких вот сайтах? - Надеюсь сами же понимаете для чего это. // ==UserScript== // @name BBB // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://blogauto.xyz/* // @icon https://www.google.com/s2/favicons?sz=64&domain=blogauto.xyz // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... let timer = 3, current = 0; const autoFaucet = setInterval(function() { current += 1; let percent = current * 10 / timer; $('#progress').attr('style', 'width: ' + percent + '%;'); $('#progress').attr('aria-valuenow', percent); if (current >= timer) { clearInterval(autoFaucet); $('#verify').submit(); } else { let wait = Math.floor(timer - current); let minutes = Math.floor(wait / 60); let seconds = wait % 60; $('#minute').text(minutes); $('#second').text(seconds); wait -= 1; } }, 100); })();
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now