HAHAHAHAAHHAHAHA kahit Pala dito daming paasa hayst
Oo boss haha kaya Dalaga na ako sa mga ganyan ehh HAHAHAHAHHAHAHAHAAHHAHAHA kahit Pala dito daming paasa hayst
HAHAHAHAAHHAHAHA kahit Pala dito daming paasa hayst
Oo boss haha kaya Dalaga na ako sa mga ganyan ehh HAHAHAHAHHAHAHAHAAHHAHAHA kahit Pala dito daming paasa hayst
wala boss drinop nya lang na script pang bux moneyDi pa i-share ehh baka lang naman makatulong boss sa anti captcha din ng payup. Wag mo na kami pahirapan magregister dun sa referral ng admin hahaha plss.
ggege boss HAHAHAwala boss drinop nya lang na script pang bux money
Sige lodsdm nyo ako send ko file check nyo nalang
alright waiting sa never seendm nyo ako send ko file check nyo nalang
Loko Loko ka talaga bossing GAHAHAHAHAHAHAHalright waiting sa never seen
Palitan mo name boss like yung name Nayan lagyan mo random letters Ganon para maging unique yung pangalan naka default name lang kasi kaya ayaw masaveayaw po maenable yung macrodroid sa accessibility
View attachment 3051289
ayaw po talaga hindi k naman ma on sa accessibilityPalitan mo name boss like yung name Nayan lagyan mo random letters Ganon para maging unique yung pangalan naka default name lang kasi kaya ayaw masave
Yes boss pwedeng pwede, using emulator langs then same tricks dito sa post ko hehepwede po ba ito sa pc?
Bat ganyan Yan boss??? Try mo kaya yung modded na macrodroid nandito lang din sa site
kung 20secs lang ang mabilis meron akong onting modified sakanya kahit 10s mabilis if wala pamabagal po ba sa 10 seconds? gamit tampermonkey?
nag mabilis lang kasi yung 20 secs
Pabulong boss pano setup mo?mabagal po ba sa 10 seconds? gamit tampermonkey?
nag mabilis lang kasi yung 20 secs
kung 20secs lang ang mabilis meron akong onting modified sakanya kahit 10s mabilis if wala pa
Pabulong boss pano setup mo?
Lagay ko narin dito sa thread para maka help sa mga nag fafarm
Inaasikaso ko Naman anti captcha sana gumana
// ==UserScript==
// @name Timer Accelerator
// @namespace http://tampermonkey.net/
// @version 5.0.1
// @license GNU AGPLv3
// @description Accelerates time by decreasing the durations of time for timers, in order to shorten the time to wait for something. This script is intended to be used for decreasing the waiting time for file downloads. This script will only work on download sites which do not track the waiting time from the server, or if the waiting time is not JavaScript driven.
// @author jcunews
// @match https://ttsave.app/*
// @match https://bestytvid.phc.onl/#forbidden#/*
// @match https://depositfiles.com/*
// @match https://www.newscon.net/downloader/
// @match *://downloadsite.com/*
// @match *://otherdownloadsite.com/files/*
// @match https://www.fshare.vn/*
// @match https://premiumbspot.phc.onl/#forbidden#/*
// @match https://yahellow.phc.onl/#forbidden#/*
// @grant none
// @run-at document-start
// ==/UserScript==
//Note: this script should be applied only for specific sites. So, once the script is installed, change the above @match metadata.
(function() {
//=== CONFIGURATION BEGIN ===
//Note: durations are in milliseconds. 1000ms = 1 second.
//Duration to use when the timer is 1 second.
//It's usually used for decrease a counter every second.
//If shortDuration is 50ms, the counter will be decreased every 50ms. So if the waiting time is e.g. 30 seconds, it will become 600ms.
var shortDuration = 550;
//Duration to use when the timer is more than 1 second.
//It's usually used to trigger download after e.g. 30 seconds.
//If longDuration is 1 second when the waiting time is 30 seconds, it will become 1 second.
var longDuration = 550;
//=== CONFIGURATION END ===
var si = setInterval;
setInterval = function(fn, duration) {
//if (duration >= 1000) duration = duration === 1000 ? shortDuration : duration;
duration = 500;
return si.apply(this, arguments);
};
var st = setTimeout;
setTimeout = function(fn, duration) {
if (duration >= 500) duration = duration === 500 ? shortDuration : longDuration;
return st.apply(this, arguments);
};
})();
ayan binago kolang yung conditionJavaScript:// ==UserScript== // @name Timer Accelerator // @namespace http://tampermonkey.net/ // @version 5.0.1 // @license GNU AGPLv3 // @description Accelerates time by decreasing the durations of time for timers, in order to shorten the time to wait for something. This script is intended to be used for decreasing the waiting time for file downloads. This script will only work on download sites which do not track the waiting time from the server, or if the waiting time is not JavaScript driven. // @author jcunews // @match https://ttsave.app/* // @match https://bestytvid.phc.onl/#forbidden#/* // @match https://depositfiles.com/* // @match https://www.newscon.net/downloader/ // @match *://downloadsite.com/* // @match *://otherdownloadsite.com/files/* // @match https://www.fshare.vn/* // @match https://premiumbspot.phc.onl/#forbidden#/* // @match https://yahellow.phc.onl/#forbidden#/* // @grant none // @run-at document-start // ==/UserScript== //Note: this script should be applied only for specific sites. So, once the script is installed, change the above @match metadata. (function() { //=== CONFIGURATION BEGIN === //Note: durations are in milliseconds. 1000ms = 1 second. //Duration to use when the timer is 1 second. //It's usually used for decrease a counter every second. //If shortDuration is 50ms, the counter will be decreased every 50ms. So if the waiting time is e.g. 30 seconds, it will become 600ms. var shortDuration = 550; //Duration to use when the timer is more than 1 second. //It's usually used to trigger download after e.g. 30 seconds. //If longDuration is 1 second when the waiting time is 30 seconds, it will become 1 second. var longDuration = 550; //=== CONFIGURATION END === var si = setInterval; setInterval = function(fn, duration) { //if (duration >= 1000) duration = duration === 1000 ? shortDuration : duration; duration = 500; return si.apply(this, arguments); }; var st = setTimeout; setTimeout = function(fn, duration) { if (duration >= 500) duration = duration === 500 ? shortDuration : longDuration; return st.apply(this, arguments); }; })();
Thanks boss I'll try na ngayonJavaScript:// ==UserScript== // @name Timer Accelerator // @namespace http://tampermonkey.net/ // @version 5.0.1 // @license GNU AGPLv3 // @description Accelerates time by decreasing the durations of time for timers, in order to shorten the time to wait for something. This script is intended to be used for decreasing the waiting time for file downloads. This script will only work on download sites which do not track the waiting time from the server, or if the waiting time is not JavaScript driven. // @author jcunews // @match https://ttsave.app/* // @match https://bestytvid.phc.onl/#forbidden#/* // @match https://depositfiles.com/* // @match https://www.newscon.net/downloader/ // @match *://downloadsite.com/* // @match *://otherdownloadsite.com/files/* // @match https://www.fshare.vn/* // @match https://premiumbspot.phc.onl/#forbidden#/* // @match https://yahellow.phc.onl/#forbidden#/* // @grant none // @run-at document-start // ==/UserScript== //Note: this script should be applied only for specific sites. So, once the script is installed, change the above @match metadata. (function() { //=== CONFIGURATION BEGIN === //Note: durations are in milliseconds. 1000ms = 1 second. //Duration to use when the timer is 1 second. //It's usually used for decrease a counter every second. //If shortDuration is 50ms, the counter will be decreased every 50ms. So if the waiting time is e.g. 30 seconds, it will become 600ms. var shortDuration = 550; //Duration to use when the timer is more than 1 second. //It's usually used to trigger download after e.g. 30 seconds. //If longDuration is 1 second when the waiting time is 30 seconds, it will become 1 second. var longDuration = 550; //=== CONFIGURATION END === var si = setInterval; setInterval = function(fn, duration) { //if (duration >= 1000) duration = duration === 1000 ? shortDuration : duration; duration = 500; return si.apply(this, arguments); }; var st = setTimeout; setTimeout = function(fn, duration) { if (duration >= 500) duration = duration === 500 ? shortDuration : longDuration; return st.apply(this, arguments); }; })();
ayan binago kolang yung condition
sige sir tanong kolang yung green ba na lumalabas extra exp yon kapag pinindot?Thanks boss I'll try na ngayon
pati sa 15 din gumagana?JavaScript:// ==UserScript== // @name Timer Accelerator // @namespace http://tampermonkey.net/ // @version 5.0.1 // @license GNU AGPLv3 // @description Accelerates time by decreasing the durations of time for timers, in order to shorten the time to wait for something. This script is intended to be used for decreasing the waiting time for file downloads. This script will only work on download sites which do not track the waiting time from the server, or if the waiting time is not JavaScript driven. // @author jcunews // @match https://ttsave.app/* // @match https://bestytvid.phc.onl/#forbidden#/* // @match https://depositfiles.com/* // @match https://www.newscon.net/downloader/ // @match *://downloadsite.com/* // @match *://otherdownloadsite.com/files/* // @match https://www.fshare.vn/* // @match https://premiumbspot.phc.onl/#forbidden#/* // @match https://yahellow.phc.onl/#forbidden#/* // @grant none // @run-at document-start // ==/UserScript== //Note: this script should be applied only for specific sites. So, once the script is installed, change the above @match metadata. (function() { //=== CONFIGURATION BEGIN === //Note: durations are in milliseconds. 1000ms = 1 second. //Duration to use when the timer is 1 second. //It's usually used for decrease a counter every second. //If shortDuration is 50ms, the counter will be decreased every 50ms. So if the waiting time is e.g. 30 seconds, it will become 600ms. var shortDuration = 550; //Duration to use when the timer is more than 1 second. //It's usually used to trigger download after e.g. 30 seconds. //If longDuration is 1 second when the waiting time is 30 seconds, it will become 1 second. var longDuration = 550; //=== CONFIGURATION END === var si = setInterval; setInterval = function(fn, duration) { //if (duration >= 1000) duration = duration === 1000 ? shortDuration : duration; duration = 500; return si.apply(this, arguments); }; var st = setTimeout; setTimeout = function(fn, duration) { if (duration >= 500) duration = duration === 500 ? shortDuration : longDuration; return st.apply(this, arguments); }; })();
ayan binago kolang yung condition
yes sir lahatan na yanpati sa 15 din gumagana?
good job hahaha, paano mo nagawa iyon? isa ka bang professional programmer? HAHAHAHAHyes sir lahatan na yan