| 123456789101112131415 |
- function IBot() {}
- IBot.prototype.init = function(bot, chanName){};
- IBot.prototype.getName = function(){};
- IBot.prototype.onActivate = function(){};
- IBot.prototype.onMessage = function(user, message){};
- IBot.prototype.onAddMode = function(user, mode) {};
- IBot.prototype.onRemMode = function(user, mode) {};
- IBot.prototype.onRename = function(oldNick, newNick) {};
- IBot.prototype.onNickPart = function(nick) {};
- IBot.prototype.onNameList = function(nicks) {};
- IBot.prototype.onSelfJoin = function() {};
- IBot.prototype.onJoin = funcion(nick) {};
|