Created
May 12, 2025 15:29
-
-
Save byigitt/8c9a56a9f3ff9a7a401fc6b45d503bfa to your computer and use it in GitHub Desktop.
poke-battle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function nope() { | |
| let links = document.getElementsByTagName("span"); | |
| for (var i = 0 ; i != links.length; i++) { | |
| let link = links[i]; | |
| if (link.innerHTML.includes("Geri Dürt")) link.click(); | |
| } | |
| } | |
| setInterval(() => nope(), 3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment