We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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], }); });
require('./events/voiceChannelJoin');
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' ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code is not working:
I am calling this file through the following code:
But Powershell gave the following output instead:
Anyone please help
The text was updated successfully, but these errors were encountered: