Answer the question
In order to leave comments, you need to log in
How to attach methods to vk-io?
It is necessary to fasten methods so that when entering a command, the bot kicks a person. At the moment he can send messages...
vk.updates.hear(/(banan)\s([^]+)/, async (mes, text) => {
let user = users.accounts[mes.senderId];
if(user.isAdmin === 0) {
return mes.send({
message: `Вы не имеете доступа к боту, для того чтобы его купить пополните баланс через [shvxts|Администратора] \nВаш баланс: ${user.money}`
})
}
else {
return mes.removeChatUser({ //тут надо прикрутить метод, я не знаю как это сделать
user_id: mes.$match[2]
})
}
});
Answer the question
In order to leave comments, you need to log in
return vk.api.call('messages.removeChatUser', {
user_id: mes.$match[2],
chat_id: mes.peerId - 2e9
})
vk.updates.hear(/(banan)\s([^]+)/, async (mes, text) => {
let user = users.accounts[mes.senderId];
if(user.isAdmin === 0) {
return mes.send({
message: `Вы не имеете доступа к боту, для того чтобы его купить пополните баланс через [shvxts|Администратора] \nВаш баланс: ${user.money}`
})
}
else {
return mes.removeChatUser({ //тут надо прикрутить метод, я не знаю как это сделать
return vk.api.call('messages.removeChatUser', {
user_id: mes.$match[2],
chat_id: mes.peerId - 2000000000
})
})
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question