This commit is contained in:
Lou 2025-11-20 21:52:49 +01:00
parent 7bd846f277
commit 17a67aaefa
4 changed files with 1 additions and 30 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/node_modules
.env
~/.gitconfig
db.json

26
app.js
View file

@ -1,26 +0,0 @@
require('dotenv').config();
const { Client, Events, GatewayIntentBits } = require('discord.js');
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers
]
});
/*
client.on(Events.MessageCreate, (message) => {
if(message.content.toLocaleLowerCase().includes("quoi")) {
message.reply(message.content.replace("quoi","feur"));
}
});
client.on(Events.ClientReady, () => {
console.log(`Hello World !`);
});
*/
// client.login(process.env.DISCORDTOKEN);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 765 KiB

View file

@ -1,4 +0,0 @@
{
"ignoredChannels": [],
"configs": {}
}