Gartic.io Auto Draw and Skip

Çizim ve Skip butonlarına otomatik tıklar

// ==UserScript==
// @name         Gartic.io Auto Draw and Skip
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Çizim ve Skip butonlarına otomatik tıklar
// @author       Ryzex
// @match        *://gartic.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function otomatikCizimButonu() {
        let cizimButon = document.querySelector(".btYellowBig.ic-drawG"); 
        if (cizimButon) {
            cizimButon.click();
            console.log("Çizim butonuna tıklandı!");
        } else {
            console.log("Çizim butonu bulunamadı.");
        }
    }

    function otomatikSkipButonu() {
        let skipButon = document.querySelector(".skip"); 
        if (skipButon) {
            skipButon.click();
            console.log("Skip butonuna tıklandı!");
        } else {
            console.log("Skip butonu bulunamadı.");
        }
    }

    setInterval(() => {
        otomatikCizimButonu(); 
        otomatikSkipButonu(); 
    }, 1000); 
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址