This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bot/commands/urusai.js
2021-04-11 12:21:08 +02:00

19 lines
686 B
JavaScript

module.exports = {
name: 'urusai',
description: 'Mówi jemenikowi żeby zamknął dupę (na vc).',
args: false,
guildOnly: true,
execute(msg, args, Discord, config, client) {
msg.delete()
.catch(console.error);
const jzdEmbed = new Discord.MessageEmbed()
.setTitle('Chotto matte! >w<')
.setColor(config.embedColor)
.setDescription(`Mówienie jemenikowi żeby zamknął dupę...`)
.attachFiles('./gractwo.png')
.setFooter(`Komenda wywołana przez ${msg.author.username}`, 'attachment://gractwo.png')
.setTimestamp();
msg.channel.send(jzdEmbed);
console.log(`Responded to urusai request by ${msg.author.username}`);
},
};