JavaScript
x
49
49
1
client.on('ready', () => {
2
command(client, 'createcategory', (message) => {
3
const name = message.content.replace('!createcategory ', '')
4
5
if(message.guild.channels.cache.find(c => c.name == message.author.username && c.type == "category") === undefined){
6
message.guild.channels.create(message.author.username, {type: 'category', permissionOverwrites: [
7
{
8
id: message.guild.id,
9
deny: ['VIEW_CHANNEL'],
10
},
11
{
12
id: message.author.id,
13
allow: ['VIEW_CHANNEL'],
14
},
15
]})
16
message.guild.channels.create('Text channel', {type: 'text', permissionOverwrites: [
17
{
18
id: message.guild.id,
19
deny: ['VIEW_CHANNEL'],
20
},
21
{
22
id: message.author.id,
23
allow: ['VIEW_CHANNEL'],
24
},
25
]}).then(channel => {
26
let category = message.guild.channels.cache.find(c => c.name == message.author.username && c.type == "category");
27
28
if (!category) throw new Error("Category channel does not exist");
29
channel.setParent(category.id);
30
}).catch(console.error);
31
message.guild.channels.create('Voice channel', {type: 'voice', permissionOverwrites: [
32
{
33
id: message.guild.id,
34
deny: ['VIEW_CHANNEL'],
35
},
36
{
37
id: message.author.id,
38
allow: ['VIEW_CHANNEL'],
39
},
40
]}).then(channel => {
41
let category = message.guild.channels.cache.find(c => c.name == message.author.username && c.type == "category");
42
43
if (!category) throw new Error("Category channel does not exist");
44
channel.setParent(category.id);
45
}).catch(console.error);
46
} else {message.send('Jau tu turi kanala, kurviuk tu')}
47
});
48
});
49
The code used to work, but somehow I forgot what I did with it and didn’t code for 2 months or so…
The function should be – when you write !createcategory
it should create a category with voice and text channels in it. The category should be named by your user name. There is no error in the console, please help, thanks!
Advertisement
Answer
I’m not sure what’s causing your issue, but try setting the parent of the text and voice channels when you create the channel:
JavaScript
1
29
29
1
// GuildChannelManager#create returns the channel you created
2
message.guild.channels.create(message.author.username, {
3
type: 'category',
4
permissionOverwrites: [
5
{id: message.guild.id, deny: ['VIEW_CHANNEL']},
6
{id: message.author.id, allow: ['VIEW_CHANNEL']},
7
]
8
}).then(parent => {
9
// Create the text channel
10
message.guild.channels.create('Text channel', {
11
type: 'text',
12
// under the parent category
13
parent, // shorthand for parent: parent
14
permissionOverwrites: [
15
{id: message.guild.id, deny: ['VIEW_CHANNEL']},
16
{id: message.author.id, allow: ['VIEW_CHANNEL']},
17
]
18
}).catch(console.error)
19
// Same with the voice channel
20
message.guild.channels.create('Voice channel', {
21
type: 'voice',
22
parent,
23
permissionOverwrites: [
24
{id: message.guild.id, deny: ['VIEW_CHANNEL']},
25
{id: message.author.id, allow: ['VIEW_CHANNEL']},
26
]
27
}).catch(console.error)
28
})
29
You could also use ES2017’s async/await:
JavaScript
1
16
16
1
// Must be an async function vvvvv
2
command(client, 'createcategory', async (message) => {
3
// ...
4
const parent = await message.guild.channels.create(/* ... */)
5
try {
6
// Run the promises concurrently, like in your code
7
await Promise.all([
8
message.guild.channels.create('Text channel', {/* ... */})
9
message.guild.channels.create('Voice channel', {/* ... */)
10
])
11
} catch (error) {
12
console.error(error)
13
}
14
// ...
15
})
16