Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

voiceChannelJoin not working #161

Open
princekhan7748 opened this issue Feb 7, 2022 · 0 comments
Open

voiceChannelJoin not working #161

princekhan7748 opened this issue Feb 7, 2022 · 0 comments

Comments

@princekhan7748
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant