var Command = require('../command'); module.exports = new Command("Echo", { aliases: ['echo', 'makesay'], helpText: 'Echos whatever you say', accessRequirement: global.ACCESS.ELEVATED, execute: function(bot, user, chan, args, isPM, alias, raw){ bot.reply(user, chan, msg); } });