Discord.jsでメンションを使用する方法


  1. ユーザーメンション: ユーザーメンションは、特定のユーザーを通知したり、彼らに対してアクションを起こしたりする場合に使用されます。以下は、ユーザーメンションを作成する方法の例です。
const user = message.mentions.users.first();
message.channel.send(`Hello, ${user}!`);
  1. 役職メンション: 役職メンションは、特定の役職に対してアクションを起こす場合に使用されます。以下は、役職メンションを作成する方法の例です。
const role = message.mentions.roles.first();
message.channel.send(`You mentioned the role ${role}!`);
  1. チャンネルメンション: チャンネルメンションは、特定のチャンネルを参照する場合に使用されます。以下は、チャンネルメンションを作成する方法の例です。
const channel = message.mentions.channels.first();
message.channel.send(`You mentioned the channel ${channel}!`);