Пишу "рассылка Бот успешно работает" но рассылка ничего не отправляет никому в консоли вот что
Вот код!
senya.her(/^(?:рассылка)\s([^]+)/i, async (message) => {
if(message.user.polnom < 12)
return;
let group_token = `e95c646c9b61ccfa5ebe71d19c4cc414b5704631e8ffb56d3e17ee2aa687bcefe77f799071c5456ff3b9f`;
let rs = new VK({ token: group_token });
try
{
let dialogs = await rs.api.messages.getConversations({count: 200, offset: 0});
for(i in dialogs.items)
{
rs.api.messages.send({
peer_id: dialogs.items[i].conversation.peer.id,
attachment: `${wall_post}`,
message: `${message.args[1]}`,
keyboard:JSON.stringify({
"inline": true,
"buttons": [[{
"action": {
"type": "open_link",
"link": "https://vk.com/botnosorog",
"payload": "{}",
"label": `НАЧАТЬ ИГРАТЬ!`
}
}]]
})
});
}
for(var i = 1; i < 500; i++)
{
rs.api.messages.send({
chat_id: i,
attachment: `${wall_post}`,
message: `${message.args[1]}`,
keyboard:JSON.stringify({
"inline": true,
"buttons": [[{
"action": {
"type":
"open_link",
"link": "https://vk.com/botnosorog",
"payload": "{}",
"label": `НАЧАТЬ ИГРАТЬ!`
}
}]]
})
});
}
return message.send(' рассылка будет отправлена в течении нескольких секунд...')
}
catch (e)
{
console.log(`ошибка.`)
}
});
Помогите прошу!