Skip to content

Commit

Permalink
2.9 Extended
Browse files Browse the repository at this point in the history
Botun son ve daha eğlenceli sürü 💕
  • Loading branch information
oktayyavuz committed Jul 8, 2024
1 parent b244f86 commit d9c7a42
Show file tree
Hide file tree
Showing 104 changed files with 10,136 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 oktayyavuz

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
111 changes: 111 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Rimuru Discord.js v14 Bot v2.9

<p align="center">
<a href="https://api.weblutions.com/discord/invite/dvCKjxHn35">
<img src="https://api.weblutions.com/discord/invite/dvCKjxHn35" alt="Rimuru Shop Discord" />
</a>
</p>


Genel Discord Botu

# Yapılan Değişiklikler:
* doğruluk cesaretlik,
* çekiliş,
* emoji kopyalama veya toplu emoji çekme,
* random anime, random manga,
* bazı bugların fixlenmesi ve kritik hata çözümleri

## İçerik tablosu

* [Gereksinimler](#gereksinimler)
* [Başlarken](#başlarken)
* [Yazar](#yazar)



## Gereksinimler

- [Node](https://nodejs.org/en/) - Sürüm 16 veya üzeri
- [NPM](https://www.npmjs.com/)

## Başlarken

Öncelikle yerel makinenizde gerekli tüm araçların kurulu olduğundan emin olun ve ardından bu adımlara devam edin.

### Kurulum

* [Glitch Kurulum](#glitch)
* [Vds Kurulum](#vds)



## Glitch


``` bash

# Glitch'e gir.
# Yeni bir proje oluşturun.
# Projenizi açın.
# Projenin alt tarafında bulunan "Tools" butonuna tıklayın.
# "Import/Export" seçeneğini seçin.
# "Import from GitHub" seçeneğini seçin.
# "https://github.com/RimuruBot/Rimuru-Discord.js-v14-Bot.git" adresini girin.
# "Import" butonuna tıklayın.
# `index.js` dosyasına gidin.
# `config.token` değerini 'process.env.token' değişkenini değiştirin.
# .env dosyasına gidin.
# `token` değerini botunuzun tokeni ile değiştirin.



```


## Vds
``` bash
# Repoyu klonla
git clone https://github.com/oktayyavuz/Rimuru-Discord.js-v14-Bot.git

# Dizine girin
cd Rimuru-Discord.js-v14-Bot/

# npm kurun
npm install

# Discord Bot Token'ı Yapılandır
echo "token='Tokenini yapıştır.'" > config.json
```

### Gerekli izinler

Botunuzda, [geliştirici portalındaki](https://discord.com/developers/applications/) "OAuth2" sekmesi altında bulunabilecek "applications.commands" uygulama kapsamının etkinleştirildiğinden emin olun.

[Geliştirici portalında](https://discord.com/developers/applications/) "Bot" sekmesi altında bulunabilecek "Server_Member Intents" ve "Message Intents"nı etkinleştirin

### Yapılandırma

Projeyi klonladıktan ve tüm bağımlılıkları yükledikten sonra Discord API jetonunuzu 'config.token' dosyasına eklemeniz gerekir.

### Durumu değiştirme

`/events/ready.js` dosyasındaki `activities` değişkenlerini düzenleyerek discord botunuzun durumunu değiştirebilirsiniz. `ActivityType.Watching` kısmını değiştirerek `İzliyor`,`Oynuyor` gibi şeyler yapabilirsiniz.


### Uygulamanın başlatılması

```bash
node index.js
```


## Yazar

[Oktay Yavuz](https://oktaydev.com.tr/)


## Lisans

Bu proje MIT Lisansı kapsamında lisanslanmıştır - ayrıntılar için [LICENSE.md](LICENSE) dosyasına bakın

21 changes: 21 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Security Policy

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 2.6.x | :white_check_mark: |
| 2.5.x | :white_check_mark: |
| 2.4.x | :white_check_mark: |
|<2.0.0 | :x: |

## Reporting a Vulnerability

Use this section to tell people how to report a vulnerability.

Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.
36 changes: 36 additions & 0 deletions commands/a-kayıt-sistemi-kapat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
const { Client, EmbedBuilder, PermissionsBitField } = require("discord.js");
const db = require("croxydb");
const config = require("../config.json");

module.exports = {
name: "kayıt-sistemi-kapat",
description: "Kayıt sistemini devre dışı bırakırsın!",
type: 1,
run: async (client, interaction) => {
const { user, guild } = interaction;

const yetki = new EmbedBuilder()
.setColor("Red")
.setDescription("❌ | Bu komutu kullanabilmek için `Yönetici` yetkisine sahip olmalısın!");

if (!interaction.member.permissions.has(PermissionsBitField.Flags.Administrator)) {
return interaction.reply({ embeds: [yetki], ephemeral: true });
}

const kayitSistemi = db.fetch(`kayıtsistemi_${guild.id}`);
if (!kayitSistemi) {
const yok = new EmbedBuilder()
.setColor("Red")
.setDescription("❌ | Kayıt sistemi zaten devre dışı!");
return interaction.reply({ embeds: [yok], ephemeral: true });
}

db.delete(`kayıtsistemi_${guild.id}`);

const basarili = new EmbedBuilder()
.setColor("Green")
.setDescription("✅ | __**Kayıt Sistemi**__ başarıyla devre dışı bırakıldı!");

return interaction.reply({ embeds: [basarili], ephemeral: false });
}
};
185 changes: 185 additions & 0 deletions commands/a-kayıt-sistemi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
const { Client, EmbedBuilder, PermissionsBitField, ModalBuilder, TextInputBuilder, TextInputStyle, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
const db = require("croxydb");
const Discord = require("discord.js");
const config = require("../config.json");
const botsahip = `<@${config["sahip"]}>`;

module.exports = {
name: "kayıt-sistemi",
description: "Kayıt sistemini ayarlarsın!",
type: 1,
options: [
{
name: "kayıt-kanalı",
description: "Kayıt kanalını ayarlarsın!",
type: 7,
required: true,
channel_types: [0]
},
{
name: "kayıt-yetkilisi",
description: "Kayıt yetkilisi rolünü ayarlarsın!",
type: 8,
required: true,
},
{
name: "kız-rol",
description: "Kız rolünü ayarlarsın!",
type: 8,
required: true,
},
{
name: "erkek-rol",
description: "Erkek rolünü ayarlarsın!",
type: 8,
required: true,
},
{
name: "kayıtsız-rol",
description: "Kayıtsız rolünü ayarlarsın!",
type: 8,
required: true,
},
],
run: async (client, interaction) => {
const { user, customId, guild } = interaction;
const yetki = new EmbedBuilder()
.setColor("Red")
.setDescription("❌ | Bu komutu kullanabilmek için `Yönetici` yetkisine sahip olmalısın!");

const kayıtkanal = interaction.options.getChannel('kayıt-kanalı');
const kayityetkilisi = interaction.options.getRole('kayıt-yetkilisi');
const kızrol = interaction.options.getRole('kız-rol');
const erkekrol = interaction.options.getRole('erkek-rol');
const kayıtsızrol = interaction.options.getRole('kayıtsız-rol');

if (!interaction.member.permissions.has(PermissionsBitField.Flags.Administrator)) return interaction.reply({ embeds: [yetki], ephemeral: true });

const kayitSistemi = db.fetch(`kayıtsistemi_${interaction.guild.id}`);
const kayıtSistemiDate = db.fetch(`kayıtsistemiDate_${interaction.guild.id}`);

if (kayitSistemi && kayıtSistemiDate) {
const date = new EmbedBuilder()
.setDescription(`❌ | Bu sistem <t:${parseInt(kayıtSistemiDate.date / 1000)}:R> önce açılmış!`);
return interaction.reply({ embeds: [date] });
}

const basarili = new EmbedBuilder()
.setColor("Random")
.setDescription(`✅ | __**Kayıt Sistemi**__ başarıyla ayarlandı!\n\n ***#*** | Kayıt Kanalı: ${kayıtkanal}\n🤖 Kayıt Yetkilisi Rolü: ${kayityetkilisi}\n🤖 Kız Rolü: ${kızrol}\n🤖 Erkek Rolü: ${erkekrol}\n🤖 Kayıtsız Rolü: ${kayıtsızrol}`);

db.set(`kayıtsistemi_${interaction.guild.id}`, { kayıtkanal: kayıtkanal.id, kayityetkilisi: kayityetkilisi.id, kızrol: kızrol.id, erkekrol: erkekrol.id, kayıtsızrol: kayıtsızrol.id });
db.set(`kayıtsistemiDate_${interaction.guild.id}`, { date: Date.now() });

return interaction.reply({ embeds: [basarili], ephemeral: false }).catch((e) => { });
}
};

client.on("guildMemberAdd", async (member) => {
const kayitSistemi = db.fetch(`kayıtsistemi_${member.guild.id}`);
if (!kayitSistemi) return;

const kayıtsız = member.guild.roles.cache.get(kayitSistemi.kayıtsızrol);
if (!kayıtsız) return console.error("Kayıtsız rolü bulunamadı.");

member.setNickname("İsim | Yaş").catch(console.error);
member.roles.add(kayıtsız).catch(console.error);
const kayıtKanalı = member.guild.channels.cache.get(kayitSistemi.kayıtkanal);
if (!kayıtKanalı) return console.error("Kayıt kanalı bulunamadı.");

const kayıtMesajı = new EmbedBuilder()
.setColor("Blue")
.setTitle(`${member.guild.name} Sunucusuna Hoşgeldin`)
.setDescription(`Kayıt olmak için yetkili kişilerden birine ulaşabilirsiniz.\n\nCreate By ${botsahip} 💖`);

const kızButonu = new ButtonBuilder()
.setCustomId("kizkayit")
.setLabel("Kız Kayıt")
.setStyle(ButtonStyle.Success);

const erkekButonu = new ButtonBuilder()
.setCustomId("erkekkayit")
.setLabel("Erkek Kayıt")
.setStyle(ButtonStyle.Primary);

const row = new ActionRowBuilder().addComponents(kızButonu, erkekButonu);

kayıtKanalı.send({
content: `Hoş geldin, ${member}!`,
embeds: [kayıtMesajı],
components: [row]
});
});

client.on("interactionCreate", async (interaction) => {
if (interaction.isButton()) {
const kayitsistemi = db.fetch(`kayıtsistemi_${interaction.guild.id}`);
if (!kayitsistemi) return;



const hedefUye = interaction.message.mentions.members.first();
if (interaction.customId === "kizkayit" || interaction.customId === "erkekkayit") {

const kayityetkilisi = kayitsistemi.kayityetkilisi;

if (!interaction.member.roles.cache.has(kayityetkilisi)) {
return interaction.reply({ content: 'Bu butonu kullanmak için yetkili rolüne sahip olmalısın!', ephemeral: true });
}
const kayitmodel = new ModalBuilder()
.setCustomId(interaction.customId === "kizkayit" ? 'kizkayitform' : 'erkekkayitform')
.setTitle(' - Kayıt Menüsü!');

const isim = new TextInputBuilder()
.setCustomId('kayitisim')
.setLabel('İsim')
.setStyle(TextInputStyle.Short)
.setMinLength(2)
.setPlaceholder('İsminiz Nedir?')
.setRequired(true);

const yas = new TextInputBuilder()
.setCustomId('kayityas')
.setLabel('Yaş')
.setStyle(TextInputStyle.Short)
.setMinLength(1)
.setPlaceholder('Yaşınız Kaçtır?')
.setRequired(true);

const kayitisimrow = new ActionRowBuilder().addComponents(isim);
const kayityasrow = new ActionRowBuilder().addComponents(yas);
kayitmodel.addComponents(kayitisimrow, kayityasrow);

await interaction.showModal(kayitmodel);
}
} else if (interaction.isModalSubmit()) {
const kayitsistemi = db.fetch(`kayıtsistemi_${interaction.guild.id}`);
if (!kayitsistemi) return;

if (interaction.customId === 'kizkayitform' || interaction.customId === 'erkekkayitform') {
const kayitisims = interaction.fields.getTextInputValue("kayitisim");
const kayityass = interaction.fields.getTextInputValue('kayityas');

const hedefUye = interaction.message.mentions.members.first();

if (!hedefUye) {
return interaction.reply({ content: "Kayıt yapılacak üye bulunamadı.", ephemeral: true });
}

hedefUye.setNickname(`${kayitisims} | ${kayityass}`).catch(console.error);

interaction.reply({ content: `${hedefUye} adlı kullanıcı başarılı bir şekilde kayıt oldu!`, ephemeral: true });

const rol = interaction.customId === 'kizkayitform' ? kayitsistemi.kızrol : kayitsistemi.erkekrol;
const kayıtsız = kayitsistemi.kayıtsızrol;

hedefUye.roles.remove(kayıtsız).catch(console.error);
hedefUye.roles.add(rol).catch(console.error);
db.set(`uye_${hedefUye.id}`, { isim: kayitisims, yas: kayityass });
}
}
});

client.on("guildMemberRemove", async (member) => {
db.delete(`uye_${member.id}`);
});
Loading

0 comments on commit d9c7a42

Please sign in to comment.