Is thhere a way to create paragraphs in an embed?
I tried to create a list on my embed, like 1- 2- and etc, but I don't know ow to skip a line when I finish one line and need to type in the other one (I am talking about lines in discord not in the code itself)
4 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
if(message.content.startsWith("*hata") || message.content.startsWith("*error")) {
const errorEmbed = new MessageEmbed()
.setColor('967565')
.setTitle('')
.setURL('')
.setAuthor({ name: 'Delight', iconURL: 'https://cdn.discordapp.com/attachments/851856082309873716/1051433489477672980/Baslksz459_20221211124107.PNG' })
.setThumbnail('')
.addFields( {name: 'Komutum neden çalşımıyor?', value: "**1-** Eğer çalıştırmak istediğin komut yanıt vermiyorsa veya düzgün çalıştıramıyorsan, lütfen sadece komutun kendi adını yazıp tekrar çalıştırmayı dene. (Örnek: `*bilgi test` komutunu çalıştıramıyorsan, sadece `*bilgi` yazmayı dene ve talimatları oku.) \ **2-** Eğer bu da işe yaramadıysa `*geribildirim` komutuyla sorunun hakkında bir geri bildirim gönder! \ **3-** Eğer botun aktif olmadığını görürsen, bot zamanaşımına uğramış olabilir, bir süre sonra geri gelmez ise lütfen bildir!"},
{name: 'Why is my command not running?', value: "**1-** If the command you want to run is not responding or you can't run it properly, please try to run it again by just typing the name of the command itself. (Example: If you can't run `*info test`, just try typing `*info` and read the instructions.) **2-** If that didn't work either, send a feedback about your problem with the `*feedback` command! **3-** If the bot is not online or active, wait for some time because it might have just got ratelimited, but if it still does not work, please report the issue!"} )
message.channel.send({ embeds: [errorEmbed] });
}
if(message.content.startsWith("*hata") || message.content.startsWith("*error")) {
const errorEmbed = new MessageEmbed()
.setColor('967565')
.setTitle('')
.setURL('')
.setAuthor({ name: 'Delight', iconURL: 'https://cdn.discordapp.com/attachments/851856082309873716/1051433489477672980/Baslksz459_20221211124107.PNG' })
.setThumbnail('')
.addFields( {name: 'Komutum neden çalşımıyor?', value: "**1-** Eğer çalıştırmak istediğin komut yanıt vermiyorsa veya düzgün çalıştıramıyorsan, lütfen sadece komutun kendi adını yazıp tekrar çalıştırmayı dene. (Örnek: `*bilgi test` komutunu çalıştıramıyorsan, sadece `*bilgi` yazmayı dene ve talimatları oku.) \ **2-** Eğer bu da işe yaramadıysa `*geribildirim` komutuyla sorunun hakkında bir geri bildirim gönder! \ **3-** Eğer botun aktif olmadığını görürsen, bot zamanaşımına uğramış olabilir, bir süre sonra geri gelmez ise lütfen bildir!"},
{name: 'Why is my command not running?', value: "**1-** If the command you want to run is not responding or you can't run it properly, please try to run it again by just typing the name of the command itself. (Example: If you can't run `*info test`, just try typing `*info` and read the instructions.) **2-** If that didn't work either, send a feedback about your problem with the `*feedback` command! **3-** If the bot is not online or active, wait for some time because it might have just got ratelimited, but if it still does not work, please report the issue!"} )
message.channel.send({ embeds: [errorEmbed] });
}
thank you! I will try it right now
Yep, it works, tysm and sorry for my lack of js 💀