latest push
This commit is contained in:
17
commands/calc.js
Normal file
17
commands/calc.js
Normal file
@@ -0,0 +1,17 @@
|
||||
var libFlayer = require("../libFlayer.js");
|
||||
|
||||
module.exports = {
|
||||
name: 'calc',
|
||||
description: 'Calc',
|
||||
execute(message, args) {
|
||||
try {
|
||||
if (args.length < 3) {
|
||||
|
||||
}
|
||||
//var stringArgs = evaluate(args.join(" "));
|
||||
//message.reply(`Answer: ${stringArgs}`);
|
||||
} catch (err) {
|
||||
message.reply(err.toString());
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user