Is it possible to make a bot's presence/activity hidden? #263
Answered
by
TheDevYellowy
Danspotnytool
asked this question in
Q&A
-
I want my bot to be automatically invisible whenever I'm not using it on an actual Discord Application without manually setting its activity status |
Beta Was this translation helpful? Give feedback.
Answered by
TheDevYellowy
Aug 18, 2022
Replies: 2 comments
-
use |
Beta Was this translation helpful? Give feedback.
0 replies
-
some simple code for this would be const client = new Client({ readyStatus: false });
client.on('ready', () => {
client.user.setStatus('invisible');
}
client.login('token') |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
aiko-chan-ai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
some simple code for this would be