Hoşgeldin Misafir

Discord bot buton ve menü nasıl yapılır?

gtech

26 Ara 2017
604 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Arkadaşlar şöyle kodlarım var. Kendim buton yapmak istedim fakat yapamıyorum yeniyim bot yapmada. İşte kodlar...

Kod:panoya kopyala

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