forked from Furtsy/sayi-saymaca-oyunu
-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.js
42 lines (32 loc) · 1.15 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const Discord = require("discord.js");
const client = new Discord.Client();
client.conf = {
"token": "token",
"oynuyor": "düt",
"durum": "online"
}
client.on("message", async(message) => {
if(message.author.bot) return;
let kanal = client.channels.cache.get('kanalid')
if(message.channel.id !== kanal.id) return;
kanal.messages.fetch({ limit: 2 }).then(messages => {
let ilksay = parseInt(messages.map(a => a.content)[1])
let sayi = Math.floor(ilksay + 1)
let sonsay = parseInt(message.content)
if(isNaN(sonsay)) return message.channel.send('sayı yazmalısın..').then(msg => {
msg.delete({ timeout: 5000})
message.delete()
})
if(sonsay !== sayi) return message.channel.send('sayı düzenini bozmasan mı ne').then(msg => {
msg.delete({ timeout: 5000})
message.delete()
})
})
})
client.on("ready", () => {
console.log(`${client.user.username} ismi ile Discord hesabı aktifleştirildi!`);
client.user.setStatus(client.conf.durum);
client.user.setActivity(client.conf.oynuyor);
console.log(`Oynuyor ayarlandı!`);
})
client.login(client.conf.token)