This commit is contained in:
2023-03-12 21:39:09 +01:00
parent c163d44895
commit 96c506b480
2 changed files with 86 additions and 3 deletions

View File

@@ -2,9 +2,9 @@ const { ChannelType, PermissionFlagsBits, ButtonBuilder, ButtonStyle, ActionRowB
const { color } = require('../../options.json'); const { color } = require('../../options.json');
module.exports = { module.exports = {
name: 'guildapply', // name: 'guildapply',
description: 'Guild application button.', // description: 'Guild application button.',
type: 'button', // type: 'button',
async execute(interaction) { async execute(interaction) {

View File

@@ -0,0 +1,83 @@
const { ChannelType, PermissionFlagsBits, ButtonBuilder, ButtonStyle, ActionRowBuilder } = require('discord.js');
const { color } = require('../../options.json');
module.exports = {
name: 'guildapply',
description: 'Guild application button.',
type: 'button',
async execute(interaction) {
const user = interaction.user;
const guild = interaction.guild;
const embedColor = Number(color.replace("#", "0x"));
if (interaction.customId === 'guildapply') {
interaction.guild.channels.create({
name: `application-${user.username}`,
type: ChannelType.GuildText,
permissionOverwrites: [
{
id: user.id,
allow: [PermissionFlagsBits.ViewChannel]
},
{
id: guild.roles.everyone,
deny: [PermissionFlagsBits.ViewChannel]
}
]
}).then(async channel => {
await interaction.user.send({
embeds: [{
title: 'Guild Application',
description: "Please answer the following questions to apply for the guild.\n" +
"If you wish to cancel your application, please press the button below or type `cancel`.",
color: embedColor,
}]
});
const input = await interaction.user.awaitMessages({
filter: m => m.author.id === user.id,
max: 1,
time: 1000 * 60
});
if (input.size === 0) {
return
}
if (input.first().content.toLowerCase() !== 'yes') {
await interaction.user.send('Application cancelled.');
return
}
const question1 = await interaction.user.send("1st")
const answer1 = await interaction.user.awaitMessages({
filter: m => m.author.id === user.id,
max: 1,
time: 1000 * 60 * 5
});
if (answer1.size === 0) {
return
}
if (answer1.first().content.toLowerCase() === 'cancel') {
await interaction.user.send('Application cancelled.');
return
}
const answer1_1 = answer1.first().content
console.log(answer1_1)
});
await interaction.reply({ content: 'Application channel created', ephemeral: true });
}
}
}