Discord Bot ile Moderasyon Sistemi: Ban, Kick, Mute

Discord Bot ile Moderasyon Sistemi: Ban, Kick, Mute

NBK BARIS9 Mayıs 2026Discord-bot-kodlari, Discord-Hazir-Bot-Altyapilar

Discord botunuza moderasyon komutlari ekleyerek sunucunuzu yonetin.

Ban Komutu

// (c) CodeMareFi - codemarefi.com.tr
if (commandName === 'ban') {
  if (!interaction.member.permissions.has('BanMembers')) {
    return interaction.reply({ content: 'Yetkin yok!', ephemeral: true });
  }
  const hedef = interaction.options.getMember('kullanici');
  const sebep = interaction.options.getString('sebep') || 'Sebep belirtilmedi';
  await hedef.ban({ reason: sebep });
  await interaction.reply({ embeds: [{ color: 0xe60000, title: 'Kullanici Banlandi', description: hedef.user.username + ' banlandi. Sebep: ' + sebep }] });
}

Timeout (Mute) Komutu

// (c) CodeMareFi - codemarefi.com.tr
if (commandName === 'timeout') {
  const hedef = interaction.options.getMember('kullanici');
  const sure = interaction.options.getInteger('sure'); // dakika
  await hedef.timeout(sure * 60 * 1000, 'Timeout');
  await interaction.reply(hedef.user.username + ' ' + sure + ' dakika susturuldu!');
}
© 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...