Androz2091 / Androz2091/discord-logs

voiceChannelJoin not working

Aperta
#161 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
TypeScript
Stelle
239
Fork
22
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

# The following code is not working:

```js
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:

```js

require('./events/voiceChannelJoin');

```

# But Powershell gave the following output instead:

```powershell

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. (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

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.