7 |
import { registrationEnd, registrationStart } from './utils/debug'; |
import { registrationEnd, registrationStart } from './utils/debug'; |
8 |
import { yellow } from './utils/util'; |
import { yellow } from './utils/util'; |
9 |
|
|
|
const client = new DiscordClient({ |
|
|
partials: ["CHANNEL"], |
|
|
intents: [ |
|
|
Intents.FLAGS.GUILDS, |
|
|
Intents.FLAGS.GUILD_MESSAGES, |
|
|
Intents.FLAGS.DIRECT_MESSAGES, |
|
|
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
|
|
Intents.FLAGS.GUILD_PRESENCES, |
|
|
Intents.FLAGS.GUILD_MEMBERS, |
|
|
Intents.FLAGS.GUILD_BANS, |
|
|
Intents.FLAGS.GUILD_MESSAGE_REACTIONS, |
|
|
Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS, |
|
|
] |
|
|
}, path.resolve(__dirname, '..')); |
|
|
|
|
10 |
if (existsSync(path.join(__dirname, '../.env'))) { |
if (existsSync(path.join(__dirname, '../.env'))) { |
11 |
config(); |
config(); |
12 |
} |
} |
24 |
process.env.ENV = 'dev'; |
process.env.ENV = 'dev'; |
25 |
} |
} |
26 |
|
|
27 |
|
const client = new DiscordClient({ |
28 |
|
partials: ["CHANNEL"], |
29 |
|
intents: [ |
30 |
|
Intents.FLAGS.GUILDS, |
31 |
|
Intents.FLAGS.GUILD_MESSAGES, |
32 |
|
Intents.FLAGS.DIRECT_MESSAGES, |
33 |
|
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
34 |
|
Intents.FLAGS.GUILD_PRESENCES, |
35 |
|
Intents.FLAGS.GUILD_MEMBERS, |
36 |
|
Intents.FLAGS.GUILD_BANS, |
37 |
|
Intents.FLAGS.GUILD_MESSAGE_REACTIONS, |
38 |
|
Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS, |
39 |
|
] |
40 |
|
}, path.resolve(__dirname, '..')); |
41 |
|
|
42 |
(async () => { |
(async () => { |
43 |
await registrationStart(); |
await registrationStart(); |
44 |
await registerCommands(client, '../commands'); |
await registerCommands(client, '../commands'); |