Advertisement
Nolifeq

Untitled

Jan 29th, 2025
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name         [ꜱɪ] ᴏᴛᴄʜʟᴀɴ
  3. // @namespace    http://tampermonkey.net/
  4. // @version      1.6
  5. // @description  full automatyczna otchłań
  6. // @author       Nolifequ
  7. // @match        https://fobos.margonem.pl/
  8. // @icon         https://cdn-icons-png.freepik.com/512/3903/3903967.png
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     function clickButton(button) {
  15.         const randomDelay = Math.floor(Math.random() * 1000) + 2000;
  16.         setTimeout(() => {
  17.             button.click();
  18.         }, randomDelay);
  19.     }
  20.  
  21.     function checkAndClickButtons() {
  22.         const buttons = document.querySelectorAll('span.gfont, button.bal_yes');
  23.         buttons.forEach(button => {
  24.             if (button.innerText.trim() === 'Walcz dalej' || button.getAttribute('name') === 'Walcz' || button.classList.contains('bal_yes')) {
  25.                 clickButton(button);
  26.             }
  27.         });
  28.     }
  29.  
  30.     function clickAutoButton() {
  31.         const autoButton = document.getElementById('autobattleButton');
  32.         if (autoButton && autoButton.style.display === 'block') {
  33.             const randomDelay = Math.floor(Math.random() * 1000) + 1000;
  34.             setTimeout(() => {
  35.                 autoButton.click();
  36.             }, randomDelay);
  37.         }
  38.     }
  39.  
  40.     function startInterval() {
  41.         const interval = 2000;
  42.         const randomDelay = Math.floor(Math.random() * 2000) - 1000;
  43.         setTimeout(() => {
  44.             checkAndClickButtons();
  45.             clickAutoButton();
  46.             startInterval();
  47.         }, interval + randomDelay);
  48.     }
  49.  
  50.     startInterval();
  51. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement