Answer the question
In order to leave comments, you need to log in
How to make the bot write to the last created room?
message.guild.channels.create(`${message.author.tag} channel`, {
type: 'text',
parent: "parentID",
}).then((channel) => {
channel.overwritePermissions([
{
id: message.guild.roles.everyone.id,
deny: ['MANAGE_ROLES', 'MANAGE_CHANNELS', 'MANAGE_MESSAGES', 'MANAGE_WEBHOOKS','ATTACH_FILES', 'EMBED_LINKS', 'SEND_TTS_MESSAGES', 'SEND_MESSAGES'],
allow: ['VIEW_CHANNEL', 'READ_MESSAGE_HISTORY'],
},
]);
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question