Tank Changer Script

Auto Changes Tank And Auto Build

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Tank Changer Script
// @namespace    ht// ==UserScript==
// @name         Tank Changer Script
// @namespace    http://tampermonkey.net/
// @version      0.8
// @description  Auto Changes Tank And Auto Build
// @author       Veddy
// @match        https://diep.io/
// @grant        none
// ==/UserScript==

setInterval(()=>{input.keyDown(220);
                 input.keyUp(220);
                 input.keyDown(52);
                 input.keyUp(52);
                 input.keyDown(53);
                 input.keyUp(53);
                 input.keyDown(54);
                 input.keyUp(54);
                 input.keyDown(56);
                 input.keyUp(56);
                 input.keyDown(55);
                 input.keyUp(55);
                 input.keyDown(77);
                 input.keyDown(32);
                },1)