General_Wolf Posted March 24, 2018 Report Posted March 24, 2018 (edited) 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 March 24, 2018 by General_Wolf Quote
Dr. McKay Posted March 24, 2018 Report Posted March 24, 2018 args.length will always be at least 1. Quote
General_Wolf Posted March 26, 2018 Author Report Posted March 26, 2018 (edited) what do you mean like the split Edited March 26, 2018 by General_Wolf Quote
General_Wolf Posted March 26, 2018 Author Report Posted March 26, 2018 (edited) I'm a novice in discord,.js but I'm new to this Edited March 26, 2018 by General_Wolf Quote
Recommended Posts
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.