Why the “presenceUpdate” does not working Discord.js

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.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

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);


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x