nyx/cat/fantastic.js

14 lines
499 B
JavaScript
Raw Normal View History

2021-09-06 12:38:25 +02:00
const { Client, Message, MessageEmbed } = require("discord.js");
module.exports = {
name: "fantastic",
timeout: 60000,
run: async (client, message, args) => {
message.delete();
const player = args.join(" ") || message.author.username;
message.channel.send(
`${player} is a fantastic CoDM player. Just need to work on communication, map awareness, info scouting, bomb plants, positioning, teamfighting, gun skill , utility usage, rotations and getting kills.`
);
},
};