Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Message.js
- module.exports = (Discord, client, message) => {
- const prefix = 'hmb ';
- if(!message.content.startsWith(prefix) || message.author.bot) return;
- const args = message.content.slice(prefix.lenght).split(/ +/);
- const cmd = args.shift().toLowerCase();
- const command = client.commands.get(cmd);
- if(command) command.execute(client, message, args, Discord);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement