// ==UserScript== // @name Renkli Çizim // @version 1.0 // @description renkli çizim yapmak için renkleri değiştiren userscript // @match gartic.io/* // @author nizam // @grant none // ==/UserScript== (function() { let colorIndex = 0; let color = true; let colorMs = 1; // Renk değiştirme aralığı (milisaniye cinsinden) function changeColor() { if (color) { if (colorIndex === 2) { // 4. rengi atla (beyaz) colorIndex += 2; } else { colorIndex = (colorIndex + 1) % 18; } document.querySelectorAll('#tools div .colors .color')[colorIndex].click(); } } setInterval(changeColor, colorMs); })();