前提・実現したいこと
IDを指定してIDのユーザー情報を表示したい
発生している問題・エラーメッセージ
コード自体にエラーは無いのですがIDを入れても 『エラー:指定されたIDが見つかりません』 と来ますどうしたらいいですか?
該当のソースコード
client.on("message", message => { if (message.content.startsWith("b!user")) { const args = message.content.split(" ")[1]; const user = client.users.cache.get(args); if (!args) return message.channel.send("エラー:IDが入力されていません"); if (!user) return message.channel.send("エラー:指定されたIDが見つかりません"); var userpresence = user.presence.status; if (userpresence === "online") { userpresence = "オンライン"; } else if (userpresence === "offline") { userpresence = "オフライン"; } else if (userpresence === "dnd") { userpresence = "取り込み中"; } else if (userpresence === "idle") { userpresence = "退席中"; } message.channel.send({ embed: { title: `───${user.username}の情報───`, description: `${user.username}の情報を表示しています`, color: "RANDOM", //色 timestamp: new Date(), footer: { icon_url: message.guild.iconURL(), text: `サーバー名:${message.guild.name}` }, thumbnail: { url: user.avatarURL() }, fields: [ { name: "ユーザータグ", value: `${user.tag}` }, { name: "ユーザーメンション", value: `${user}` }, { name: "ユーザーID", value: `${user.id}` }, { name: "アカウントの種類", value: user.bot ? "BOT" : "ユーザー", inline: true }, { name: "現在のステータス", value: `${userpresence}`, inline: true }, { name: "テスト欄", value: `${user.guild}` } ] } }); } });
補足情報(FW/ツールのバージョンなど)
3月21日現在の最新バージョン
v12
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。