iBot.js 547 B

123456789101112131415
  1. function IBot() {}
  2. IBot.prototype.init = function(bot, chanName){};
  3. IBot.prototype.getName = function(){};
  4. IBot.prototype.onActivate = function(){};
  5. IBot.prototype.onMessage = function(user, message){};
  6. IBot.prototype.onAddMode = function(user, mode) {};
  7. IBot.prototype.onRemMode = function(user, mode) {};
  8. IBot.prototype.onRename = function(oldNick, newNick) {};
  9. IBot.prototype.onNickPart = function(nick) {};
  10. IBot.prototype.onNameList = function(nicks) {};
  11. IBot.prototype.onSelfJoin = function() {};
  12. IBot.prototype.onJoin = funcion(nick) {};