-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.js
More file actions
33 lines (31 loc) · 996 Bytes
/
config.js
File metadata and controls
33 lines (31 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = {
token: "" || process.env.TOKEN,
prefix: "!",
botStatus: "🎵 Müzik Çalıyor",
embedColor: "#ff0000",
ownerID: "BOT_SAHİBİ_ID",
// Emoji Ayarları
emojis: {
play: "▶️",
pause: "⏸️",
stop: "⏹️",
queue: "📜",
success: "✅",
error: "❌",
repeat: "🔁",
skip: "⏭️"
},
// Mesaj Ayarları
messages: {
notInVoice: "Bir ses kanalında olmalısınız!",
notInSameVoice: "Benimle aynı ses kanalında olmalısınız!",
noPermission: "Bu komutu kullanma yetkiniz yok!",
noQueue: "Şu anda çalan bir şarkı yok!",
addedToQueue: "Şarkı sıraya eklendi:",
nowPlaying: "Şimdi çalıyor:",
skipSong: "Şarkı geçildi!",
stoppedPlaying: "Müzik durduruldu!",
volumeChanged: "Ses seviyesi değiştirildi:",
queueEnded: "Sıra bitti, ses kanalından ayrılıyorum!"
}
};