Ken Carbon
Ken Carbon
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by Ken Carbon on 2/28/2024 in #djs-questions
Activity doesn't change
module.exports = (client) => {
console.log(
`Ready to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`
);

const activity = "Bot made by rafacs-";
client.user.setActivity(activity, { type: "WATCHING" });
client.user.setStatus('dnd');
};
module.exports = (client) => {
console.log(
`Ready to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`
);

const activity = "Bot made by rafacs-";
client.user.setActivity(activity, { type: "WATCHING" });
client.user.setStatus('dnd');
};
33 replies