Added more functionality

This commit is contained in:
hydrabolt
2015-08-14 16:02:40 +01:00
parent 0a278a32f3
commit 856149860e
4 changed files with 110 additions and 1 deletions

14
hydrabot/commands.js Normal file
View File

@@ -0,0 +1,14 @@
var Authority = require("./authority.js");
Commands = [];
Commands["info"] = {
oplevel : 0,
fn : function(bot, params, message){
bot.reply(message, "Info!");
}
}
exports.Commands = Commands;