Oh baby a triple (triple kill sound effect).
当前为
// ==UserScript==
// @name triple (vertix.io)
// @namespace brazilrules
// @description Oh baby a triple (triple kill sound effect).
// @version 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();
});
}, 0xBB8);
})();