nyx/cat/Path/fantastic.js

14 lines
472 B
JavaScript
Raw Normal View History

2021-06-12 12:53:51 +02:00
const { Client, Message, MessageEmbed } = require("discord.js");
module.exports = {
name: "fantastic",
timeout: 60000,
2021-06-24 09:53:19 +02:00
2021-06-12 12:53:51 +02:00
run: async (client, message, args) => {
message.delete();
const player = args.join(" ");
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.`
);
},
};