triple (vertix.io)

Oh baby a triple (triple kill sound effect).

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

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 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        triple (vertix.io)
// @namespace   brazilrules
// @description Oh baby a triple (triple kill sound effect).
// @version     2.0.1
// @author      BRAZILRULES & HighNoon643
// @match       http://vertix.io/*
// @grant       none
// ==/UserScript==

;(() => {
    let _b = function() {
        socket.on("3", function(a) {
            let t = new Audio('http://soundboard.panictank.net/Oh%20Baby%20A%20Triple.mp3');
            if(3 == a.kd) t.play();
        });
    }
    
    let _t = window.setInterval(() => {
        if(socket) clearInterval(_t), _b();
    }, 0x64);
})();