Answers for "activity discord js"

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
1

discord js channel send

const user = <client>.users.cache.get('<id>');
user.send('<content>');
Posted by: Guest on September-08-2020
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