🏠 Home 

Notificador de ausencias

Te avisa cuando algún amigo tuyo se va.


Install this script?
// ==UserScript==
// @name         Notificador de ausencias
// @namespace    Klatu
// @version      1
// @description  Te avisa cuando algún amigo tuyo se va.
// @author       Klatu
// @match        http://www.kongregate.com/games/*/*
// @grant        none
// ==/UserScript==
window.addEventListener('load', function(){
ChatRoom.prototype.userLeftAntesDeNotificadorDeAusencias=ChatRoom.prototype.userLeft;
ChatRoom.prototype.userLeft=function(a){
this.userLeftAntesDeNotificadorDeAusencias(a);
a = a.data.user;
if(holodeck._chat_window.isFriend(a.username)) this._chat_dialogue.kongBotMessage('Che, '+a.username+' se las tomó.');
};
});