I want my to set my bot's game(activity) by a setgame command how can i do that
The issue tracker is only for bug reports and enhancement suggestions. If you have a question, please ask it in the Discord server instead of opening an issue – you will get redirected there anyway.
\
client.on("ready", () => {
console.log (Bot Online)
client.user.setActivity("your activity")
});
@matdesu
client.on("ready", () => {
console.log(`Bot Online`)
client.user.setActivity("your activity")
});
Most helpful comment
\