“Discord.js Отправить DM конкретному пользователю” Ответ

Discord JS Отправить DM пользователю

// In order for a bot to send a message, you need <client>.send()
// the client is where the bot will send a message to(A channel, everywhere in the server, or a PM). 
// If you want the bot to PM a certain user, you can use message.author as your client. 
mesage.author.send("LOL, I just slid into your DMs :joy:";
N!ls

DM кто -то от id discord.js

Client.users.get(ID.toString()).send("Hello, how are you doing?");
Outrageous Ostrich

Discord.js Отправить DM конкретному пользователю

client.users.fetch('USER_ID').then((user) => {
try {
	user.send("txt");	
} catch (err){
	console.log("err")
}
Condemned Crane

Ответы похожие на “Discord.js Отправить DM конкретному пользователю”

Вопросы похожие на “Discord.js Отправить DM конкретному пользователю”

Больше похожих ответов на “Discord.js Отправить DM конкретному пользователю” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования