Jump to content
McKay Development

How do I send a message to a user


General_Wolf

Recommended Posts

Like what i'm trying to do is when someone puts !sell in the chat with an argument on it. If there isn't a argument/number on it, the bot replies with "Sorry you must put a number".

 

Since I use discord.js a lot my arguments may be wrong so if it is, please tell me the correct argument:

 

 

client.on('friendMessage', (senderID, message) => {
var args = message.slice(prefix.length).trim().split(/ +/g);
if(message == prefix + "sell") {
if(!args.length) {
client.chatMessage(senderID, 'You didn\'t provide a number');
}
}
});

 

 

But here;'s the thing the bot doesn't reply when I didn't provide an argument. So anyways any tips and stuff would be greatly appreciated

Edited by General_Wolf
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...