triple (vertix.io)

Oh baby a triple (triple kill sound effect).

  1. // ==UserScript==
  2. // @name triple (vertix.io)
  3. // @namespace brazilrules
  4. // @description Oh baby a triple (triple kill sound effect).
  5. // @version 2.0.1
  6. // @author BRAZILRULES & HighNoon643
  7. // @match http://vertix.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. ;(() => {
  12. let _b = function() {
  13. socket.on("3", function(a) {
  14. let t = new Audio('http://soundboard.panictank.net/Oh%20Baby%20A%20Triple.mp3');
  15. if(3 == a.kd) t.play();
  16. });
  17. }
  18. let _t = window.setInterval(() => {
  19. if(socket) clearInterval(_t), _b();
  20. }, 0x64);
  21. })();