为什么“presenceUpdate” Discord.js 不起作用

发布于 2025-01-11 08:09:35 字数 181 浏览 0 评论 0原文

client.on("presenceUpdate", function (oldPresence, newPresence) { console.log(oldPresence, newPresence); }

即使日志上没有显示错误,这也不会在任何日志上显示任何内容 Discordjs v12.5.3。

client.on("presenceUpdate", function (oldPresence, newPresence) { console.log(oldPresence, newPresence); }

This doesn't show anything on any logs even though no error shows up on logs
discordjs v12.5.3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2025-01-18 08:09:35

你好,如果您尝试设置机器人的客户端状态,那么我建议执行 client.user.setPresence 函数,如果您想控制台客户端状态,那么您可以执行 console.log(状态)

 let status;
switch (client.presence.status) {
case "online":
status = "

hello there if your trying to set the bot's client presence then i would recommend to do the client.user.setPresence function and if you wanna console the clients status then you can do console.log(status)

 let status;
        switch (client.presence.status) {
            case "online":
                status = "???? Online";
                break;
            case "dnd":
                status = "???? Do Not Disturb";
                break;
            case "idle":
                status = "???? Idle";
                break;
            case "offline":
                status = "???? Offline";
                break;
        }
console.log(status);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文