Androz2091 / discord-logs

📝Framework that simplify the usage of advanced Discord logs
239 stars 22 forks source link

voiceChannelJoin not working #161

Open princekhan7748 opened 2 years ago

princekhan7748 commented 2 years ago

The following code is not working:

const client = require('../index');
const { MessageEmbed } = require('discord.js');
const { server_log } = require('.//../channel.json');

// Joined VC
client.on('voiceChannelJoin', (member, channel) => {

    const LogChannel = client.channels.cache.get(server_log);
    const VCJoined = new MessageEmbed()
        .setTitle('Voice Channel Joined')
        .setColor('#2F3136')
        .setDescription(member.user.tag + ' joined ' + `${channel}` + '!');

    return LogChannel.send({
        embeds: [VCJoined],
    });

});

I am calling this file through the following code:


require('./events/voiceChannelJoin');

But Powershell gave the following output instead:


node:internal/modules/cjs/loader:936
  throw err;
  ^

Require stack:
- F:\Discord bot packages\3rd\index.js
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
    at Function.Module._load (node:internal/modules/cjs/loader:778:27)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (F:\Discord bot packages\3rd\index.js:32:1)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:79:12) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [ 'F:\\Discord bot packages\\3rd\\index.js' ]
}

Anyone please help