Is it possible auto sending a message to a channel after login #6865
-
the bot is in the server and I would like to send the message by itself after the bot login something like(without receive user msg) |
Beta Was this translation helpful? Give feedback.
Answered by
yuchinchenTW
Oct 20, 2021
Replies: 1 comment
-
nvm I just figure it out |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yuchinchenTW
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nvm I just figure it out
client.login(token);
client.once('ready', () => {
console.log(
Logged in as ${client.user.tag}!
);console.log(client.channels.cache.get("channel id").send("hello"));
})