Answers for "Discord js activity"

1

discord.js bot activity

bot.user.setActivity('some activity', { type: 'WATCHING' }) // STREAMING, WATCHING, CUSTOM_STATUS, PLAYING, COMPETING
.then(presence => console.log(`Activity set to ${presence.activities[0].name}`))
  .catch(console.error);
Posted by: Guest on March-14-2021
0

discord js channel send

const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');
Posted by: Guest on September-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language