|
|
|
@ -187,7 +187,7 @@ class _Client extends Client
|
|
|
|
|
this.on("messageCreate", message=>
|
|
|
|
|
{
|
|
|
|
|
this.checkForInvites(message);
|
|
|
|
|
if(message.content.startsWith('!'))
|
|
|
|
|
if(message.content.startsWith(process.env.prefix)) //Test prefix t!
|
|
|
|
|
{
|
|
|
|
|
let commandName=message.content.split('!')[1].split(' ')[0];
|
|
|
|
|
let args = message.content.split(' ');
|
|
|
|
@ -312,7 +312,7 @@ class _Client extends Client
|
|
|
|
|
{
|
|
|
|
|
return error;
|
|
|
|
|
});
|
|
|
|
|
// console.log('Lib: YTFeed:',ytChannelName, res.author.name, channel.name,feed.ChannelId ,channel.id)
|
|
|
|
|
console.log('Lib: YTFeed:',ytChannelName, res?.author?.name, channel.name,feed?.ChannelId ,channel.id)
|
|
|
|
|
var aux = res;
|
|
|
|
|
const lastSentMessage= await channel.messages.fetch().then(res=>
|
|
|
|
|
{
|
|
|
|
@ -346,13 +346,13 @@ class _Client extends Client
|
|
|
|
|
embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'});
|
|
|
|
|
embed.setColor(0x110809);
|
|
|
|
|
embed.setTimestamp();
|
|
|
|
|
embed.setURL(res.author.url)
|
|
|
|
|
embed.setTitle(res.author.name);
|
|
|
|
|
embed.setImage(`https://i3.ytimg.com/vi/${res.image}/maxresdefault.jpg`)
|
|
|
|
|
embed.setDescription(feed.CostumMessage);
|
|
|
|
|
embed.addFields({name:res.title, value:' '},
|
|
|
|
|
{name:'PublishedTimeStamp', value:res.published},
|
|
|
|
|
{name:'Link:', value:res.link});
|
|
|
|
|
embed.setURL(res?.author?.url)
|
|
|
|
|
embed.setTitle(res?.author?.name);
|
|
|
|
|
embed.setImage(`https://i3.ytimg.com/vi/${res?.image}/maxresdefault.jpg`)
|
|
|
|
|
embed.setDescription(feed?.CostumMessage);
|
|
|
|
|
embed.addFields({name:res?.title, value:' '},
|
|
|
|
|
{name:'PublishedTimeStamp', value:res?.published},
|
|
|
|
|
{name:'Link:', value:res?.link});
|
|
|
|
|
channel.send({embeds:[embed]});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|