Creating your first command
The basics
// ...
// COMMANDS:
new engine.command('!help')
// ...function command(msg) {
// what to happen when the command is called
msg.reply('help message')
}
module.exports = commandLast updated
// ...
// COMMANDS:
new engine.command('!help')
// ...function command(msg) {
// what to happen when the command is called
msg.reply('help message')
}
module.exports = commandLast updated