Arkadaşlar şöyle kodlarım var. Kendim buton yapmak istedim fakat yapamıyorum yeniyim bot yapmada. İşte kodlar...
Kod
anoya kopyala
Read more
Kod
Kod:
//bot.js
const fs = require('fs');
const path = require('path');
const express = require('express');
const { Client, Intents } = require('discord.js');
const app = express();
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES
]
});
let botActive = false;
let totalMessages = 0;
let startTime = null;
// Middleware to parse JSON and...
Read more
