const { MessageEmbed } = require("discord.js") exports.help = { isim: 'bot-yaz', ek: 'text' } exports.run = (client, message, args) => { try{ if(!["gelıstırıcıID"].includes(message.author.id)) return message.reply("`text` komutunu kullanmak için gerekli izne sahip değilsiniz!").catch() if(!args[0]) return message.channel.send(` Yazılacak mesajı girmelisiniz!`).catch() const e = new MessageEmbed().setTimeStamp().setDescription(`${args[0]}`); message.delete().then(u => u.channel.send(e).catch()).catch() }catch(e){ message.reply("Komutu kullanırken bir hata oluştu!\nKomutun çalışmamasına sebep olan hata: `"+e+"`").catch(); } };