A silly little thing i decided to do
Question: Diting? => Answer: Woof!
Question: Diting find @user => Answer: ...Woof! @user
Question: Diting find => Answer: Woof?
First your gonna need node.js you can download it here
Then in the Diting folder just make an config.json file with the following content:
{
"token": "YOUR BOT TOKEN HERE"
}And ofcourse you need a bot with these permissions:
you only really need MESSAGE CONTENT INTENT so if you dont want to select them all just change this from the Diting/main.js
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
],
});To
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
],
});And then you just run node Diting/main.js and you have your own cute Diting :D!
Have a good rest of your day/night and thank you for looking at this silly project :3

