Skip to content

Commit

Permalink
Antiafk
Browse files Browse the repository at this point in the history
JUST COPY THIS CODE AND PASTE IT INTO THE BROWSER CONSOLE BY PRESSING F12
this script is not banned, since it is almost impossible to track it, unlike others, you can minimize a window or browser with it, it can work indefinitely. To stop it, restart the site (F5)
  • Loading branch information
rsstolica authored Oct 29, 2023
0 parents commit 6291687
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions antiafk
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
function clickEvery15Seconds() {
function click() {
var event = new MouseEvent('click', {
bubbles: true,
cancelable: true,
view: window
});
var element = document.elementFromPoint(window.innerWidth / 2, window.innerHeight / 2);
element.dispatchEvent(event);

console.log("click");
}

function startClicking() {
setInterval(function() {
click();
}, 15000);
}

startClicking();
}
clickEvery15Seconds();

0 comments on commit 6291687

Please sign in to comment.