Discord Bot ile Anket Sistemi Olusturma

Discord Bot ile Anket Sistemi Olusturma

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

Discord botunuza anket sistemi ekleyerek kullanicilarin oy kullanmasini saglayabilirsiniz.

Reaksiyon ile Anket

// (c) CodeMareFi - codemarefi.com.tr
if (commandName === 'anket') {
  const soru = interaction.options.getString('soru');
  const embed = new EmbedBuilder()
    .setColor(0x5865F2)
    .setTitle('📊 Anket')
    .setDescription(soru)
    .addFields(
      { name: '✅ Evet', value: 'Evet oyu icin ✅ reaksiyonu ekle', inline: true },
      { name: '❌ Hayir', value: 'Hayir oyu icin ❌ reaksiyonu ekle', inline: true }
    )
    .setFooter({ text: 'CodeMareFi Anket Sistemi' });
  const mesaj = await interaction.reply({ embeds: [embed], fetchReply: true });
  await mesaj.react('✅');
  await mesaj.react('❌');
}
© CodeMareFicodemarefi.com.tr

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...