How to make a setwelcome command that displays the welcome message discord.js
[deleted]
Hi there! I am currently making a discord.js v12 bot, and I have a welcome message command in the bot. As of now, the code just finds a channel name of welcome, and puts the message there. I want to change that to where a user can run a .setwelcome command, and it will then display the welcome message there. How could I do this?
(Here is my current code):
client.on('guildMemberAdd', member => { if (!member.guild) return; let guild = member.guild let channel = guild.channels.cache.find(c => c.name === "welcome"); let membercount = guild.members if (!channel) return; let embed = new Discord.MessageEmbed() .setColor("GREEN") .setTitle("New Server Member!") .setDescription(`Welcome, ${member.user.tag} to **${guild.name}!**`) .setThumbnail(member.user.displayAvatarURL()) //.setFooter(`You are the ${membercount}th member to join`); channel.send(embed); });
RayRP
Donde pongo el id del canal
FABBYG
Sry But i need .py not .js
PattanAhmed
@JollyJack8 Hi,
I think you would probably need a database to complete what you think, I guess!
I think you would probably need a database to complete what you think, I guess!
Hope this helps
Please mark my answer if this helps. :)
Leroy01010
what language is that
Coder100
node.js :/
@Leroy01010
first install the quick.db package by npm i quick.db
then this can be the code for setting up welcome channel:
const Command = require("../Structures/Command.js");
const Discord = require("discord.js");
const { MessageEmbed, MessageActionRow, MessageButton} = require('discord.js');
const db = require('quick.db');
module.exports = new Command({
name: 'setwelcome',
description: 'idk',
permission: 'ADMINISTRATOR',
})