let guild = client.guilds.cache.get(args[0]);
let channel = guild.channels.cache.filter(ch => ch.type === "text");
channel.first().createInvite({ maxUsers: 1, maxAge: 0, unique: true})
.then(invite => message.channel.send(`https://discord.gg/${invite.code}`));
I am assuming that you defined args
and client
already. guild
stores the server you provided by its ID. channel
filters every text channel and stores it. Then we take the first found text channel by using channel.first()
and create an invite by using .createInvite() (because you only can create an invite to a channel). After that we use .then
to get the invite code and send the full link to the current text channel.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…