Added webapp
This commit is contained in:
@ -41,7 +41,7 @@ module.exports = {
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor("#03FC20")
|
||||
.setTitle("🐺 count")
|
||||
.setDescription(`I have counted ${basecount} wolf messages`)
|
||||
.setDescription(`[I have counted ${basecount} wolf messages](https://wolfcount.skywolfteam.nl/)`)
|
||||
.setTimestamp()
|
||||
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
|
||||
interaction.followUp({ embeds: [embed] });
|
||||
|
18
commands/Info/wolfinv.js
Normal file
18
commands/Info/wolfinv.js
Normal file
@ -0,0 +1,18 @@
|
||||
const { EmbedBuilder } = require('discord.js');
|
||||
|
||||
module.exports = {
|
||||
name: "wolfinv",
|
||||
private: false,
|
||||
description: "Returns the invite of wolfcount.",
|
||||
|
||||
run: async (client, interaction) => {
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor("#03FC20")
|
||||
.setTitle("🐺 count")
|
||||
.setDescription(`[invite botcounter](https://discord.com/oauth2/authorize?client_id=1100390424381751328&permissions=327744&scope=bot%20applications.commands)`)
|
||||
.setTimestamp()
|
||||
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
|
||||
interaction.followUp({ embeds: [embed] });
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user