So I am currently scripting a discord bot using node.js but I cannot figure out how to make a bot status similar to this I would really appreciate if anyone can tell me how to do this. Thanks!
client.on('ready', () => { client.user.setPresence({ game: { name: 'with discord.js' }, status: 'idle' }) console.log(${client.user.username} is up and running!); })
${client.user.username} is up and running!
bot.on('ready', () => { bot.user.setPresence({ WATCHING: { name: '!help' }, status: 'online' }); console.log(`[READY] ${bot.user.tag} has been successfully booted up!`); });
The bot was able to start up but the status didn't show on the bot. Can you help with that?
game
game is still supported i think
Bot status
So I am currently scripting a discord bot using node.js but I cannot figure out how to make a bot status similar to this

I would really appreciate if anyone can tell me how to do this. Thanks!
client.on('ready', () => {
client.user.setPresence({ game: { name: 'with discord.js' }, status: 'idle' })
console.log(
${client.user.username} is up and running!
);})
The bot was able to start up but the status didn't show on the bot. Can you help with that?
game
is no longer supported.game is still supported i think