Discord Bot ile Embed Mesaj Gönderme Rehberi

Discord Bot ile Embed Mesaj Gönderme Rehberi

NBK BARIS1 Mayıs 2026Discord-bot-kodlari, JavaScript

Discord botlarinda embed mesajlar cok daha profesyonel gorunur. Iste tum detaylariyla embed kullanimi!

Temel Embed

// (c) CodeMareFi - codemarefi.com.tr
const { EmbedBuilder } = require('discord.js');
const embed = new EmbedBuilder()
  .setColor(0xe60000)
  .setTitle('CodeMareFi Bot')
  .setURL('https://codemarefi.com.tr')
  .setDescription('Discord bot kodlari ve yazilim rehberleri!')
  .addFields(
    { name: 'Sunucu', value: interaction.guild.name, inline: true },
    { name: 'Uye', value: String(interaction.guild.memberCount), inline: true }
  )
  .setFooter({ text: 'CodeMareFi', iconURL: client.user.displayAvatarURL() })
  .setTimestamp();
await interaction.reply({ embeds: [embed] });
© CodeMareFi Bu icerik codemarefi.com.tr ye aittir.

0 Yorum

YORUM YAPMAK İÇİN SİSTEME SIZMANIZ GEREKİYOR

Lütfen yukarıdaki butonu kullanarak giriş yapın veya kimlik oluşturun.

Yorumlar yükleniyor...