Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
825 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...