triple (vertix.io)

Oh baby a triple (triple kill sound effect).

Version vom 11.06.2016. Aktuellste Version

// ==UserScript==
// @name        triple (vertix.io)
// @namespace   brazilrules
// @description Oh baby a triple (triple kill sound effect).
// @version     1.1
// @author      BRAZILRULES && HighNoon643
// @match       http://vertix.io/*
// @grant       none
// ==/UserScript==

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