Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

javascript - How would I send a message with an argument to a specific channel

I need to send an argument from a user to a specific channel. Here is the code I have written so far:

client.on('message', message => {
    if (message.content === `!advise`) {
        const mentionedUser = message.mentions.users.first();
        const args = message.content.slice(PREFIX.length).split(' ');

        if (!args[1]) 
            return message.reply(':no_entry_sign: | Please enter a user to advise!');

        const taggedUser = message.mentions.users.first();
        const adviseChannel = client.channels.cache.find(channel => channel.id === "747843229478551692");

        message.channel.send(`Successfully advised ${taggedUser.username}!`);
        adviseChannel.send(message.member ` advised ${taggedUser.username}! `);
    }
}

I don't get any response from the bot, could someone help? I am new to coding so please don't judge =)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...