batuhanacar
Genç Girişimci
Kayıtlı Üye
Sunucu Sahibi
- Katılım
- 17 Kas 2021
- Mesajlar
- 88
- Tepkime puanı
- 68
- Aktiflik Süresi
- 0
- Puanları
- 0
- Discord
- batuhanacar#0001
- Steam
- batuhanacar
Selam Mine-Block forum kullanıcıları,
Son zamanlarda çoğu bot'da farkettiysek Youtube Together apisi ile yapılan discord'dan youtubeye bağlanıp video izleme sistemini çoğu kişi farketmiştir fakat bunun kodu çok nadir paylaşılıyor bendede bu kod mevcuttu birazcık düzenleyip paylaşma kararı aldım %100 bana ait değildir %50'si benimdir iyi kullanımlar dilerim isterseniz ufaktan tanıtıma geçelim
Son zamanlarda çoğu bot'da farkettiysek Youtube Together apisi ile yapılan discord'dan youtubeye bağlanıp video izleme sistemini çoğu kişi farketmiştir fakat bunun kodu çok nadir paylaşılıyor bendede bu kod mevcuttu birazcık düzenleyip paylaşma kararı aldım %100 bana ait değildir %50'si benimdir iyi kullanımlar dilerim isterseniz ufaktan tanıtıma geçelim
Kod:
const Discord = require("discord.js");
const client = new(require("discord.js").Client)
const { MessageEmbed } = require('discord.js');
const fetch = require('node-fetch')
exports.run = async (client, message, args) => {
if(!message.member.voice.channel) return message.reply('Bir sesli kanala giriş yap. <:bilgi:828207455792136192>')
if(!args[0]) return message.reply('**!youtube yt** komutunu kullan! <:bilgi:828207455792136192>')
if(args[0] == 'yt') {
const embed = new MessageEmbed()
fetch(`https://discord.com/api/v8/channels/${message.member.voice.channel.id}/invites`, {
method: "POST",
body: JSON.stringify({
max_age: 86400,
max_uses: 0,
target_application_id: "755600276941176913",
target_type: 2,
temporary: false,
validate: null
}),
headers: {
"Authorization": `Bot ${client.token}`,
"Content-Type": "application/json"
}
})
.then(res => res.json())
.then(invite => {
embed.setDescription(`[${message.member.voice.channel.name}](https://discord.gg/${invite.code})\n> Odaya tıklayarak youtube together'i aktif edebilirsin <a:kitaps:830219594853253172>`)
embed.setColor('RANDOM')
message.channel.send(embed)
})
} else if(args[0] == 'bio') {
const embed = new MessageEmbed()
fetch(`https://discord.com/api/v8/channels/${message.member.voice.channel.id}/invites`, {
method: "POST",
body: JSON.stringify({
max_age: 86400,
max_uses: 0,
target_application_id: "773336526917861400",
target_type: 2,
temporary: false,
validate: null
}),
headers: {
"Authorization": `Bot ${client.token}`,
"Content-Type": "application/json"
}
})
.then(res => res.json())
.then(invite => {
embed.setDescription(`[${message.member.voice.channel.name}](https://discord.gg/${invite.code})\n> Odaya tıklayarak youtube together'i aktif edebilirsin <a:kitaps:830219594853253172>`)
embed.setColor('RANDOM')
message.channel.send(embed)
})
} else if(args[0] == 'pn') {
const embed = new MessageEmbed()
fetch(`https://discord.com/api/v8/channels/${message.member.voice.channel.id}/invites`, {
method: "POST",
body: JSON.stringify({
max_age: 86400,
max_uses: 0,
target_application_id: "755827207812677713",
target_type: 2,
temporary: false,
validate: null
}),
headers: {
"Authorization": `Bot ${client.token}`,
"Content-Type": "application/json"
}
})
.then(res => res.json())
.then(invite => {
embed.setDescription(`[${message.member.voice.channel.name}](https://discord.gg/${invite.code})\n> Odaya tıklayarak youtube together'i aktif edebilirsin <a:kitaps:830219594853253172>`)
embed.setColor('RANDOM')
message.channel.send(embed)
})
} else if(args[0] == 'fio') {
const embed = new MessageEmbed()
fetch(`https://discord.com/api/v8/channels/${message.member.voice.channel.id}/invites`, {
method: "POST",
body: JSON.stringify({
max_age: 86400,
max_uses: 0,
target_application_id: "814288819477020702",
target_type: 2,
temporary: false,
validate: null
}),
headers: {
"Authorization": `Bot ${client.token}`,
"Content-Type": "application/json"
}
})
.then(res => res.json())
.then(invite => {
embed.setDescription(`[${message.member.voice.channel.name}](https://discord.gg/${invite.code})\n> Odaya tıklayarak youtube together'i aktif edebilirsin <a:kitaps:830219594853253172>`)
embed.setColor('RANDOM')
message.channel.send(embed)
})
} else {
const embed = new MessageEmbed()
embed.setDescription(`Geçersiz komut.`)
embed.setColor('RED')
message.channel.send(embed)
}
}
exports.conf = {
enabled: true,
guildOnly: false,
aliases: ["youtube"],
permLevel: 0
};
exports.help = {
name: 'youtube',
description: 'Ses kanalında youtube oyun v.s açmanıza yarar',
usage: 'youtube'
};