Gartic.io Auto Draw and Skip

Çizim ve Skip butonlarına otomatik tıklar

  1. // ==UserScript==
  2. // @name Gartic.io Auto Draw and Skip
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Çizim ve Skip butonlarına otomatik tıklar
  6. // @author Ryzex
  7. // @match *://gartic.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function otomatikCizimButonu() {
  15. let cizimButon = document.querySelector(".btYellowBig.ic-drawG");
  16. if (cizimButon) {
  17. cizimButon.click();
  18. console.log("Çizim butonuna tıklandı!");
  19. } else {
  20. console.log("Çizim butonu bulunamadı.");
  21. }
  22. }
  23.  
  24. function otomatikSkipButonu() {
  25. let skipButon = document.querySelector(".skip");
  26. if (skipButon) {
  27. skipButon.click();
  28. console.log("Skip butonuna tıklandı!");
  29. } else {
  30. console.log("Skip butonu bulunamadı.");
  31. }
  32. }
  33.  
  34. setInterval(() => {
  35. otomatikCizimButonu();
  36. otomatikSkipButonu();
  37. }, 1000);
  38. })();

QingJ © 2025

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