37 lines
1,020 B
JavaScript
37 lines
1,020 B
JavaScript
const client = require("../bot");
|
|
const moment = require("moment");
|
|
client.on("messageCreate", async message => {
|
|
if (message.author.bot) return;
|
|
if (!message.guild) return;
|
|
const dataa = await client.data.getUser(message.author.id);
|
|
if (dataa) {
|
|
if (dataa.AFK != null) {
|
|
message.reply(
|
|
`Welcome back <@${dataa.User}>! I have removed your AFK status.`
|
|
);
|
|
const nothahaa = message.guild.members.cache.get(message.author.id);
|
|
nothahaa.setNickname(`${message.author.username}`);
|
|
await client.data.DelAFK(message.author.id);
|
|
} else return;
|
|
} else {
|
|
return;
|
|
}
|
|
if (message.mentions.members.first()) {
|
|
const data1 = await client.data.getUser(
|
|
message.mentions.members.first().id
|
|
);
|
|
if (data1) {
|
|
if (data1.AFK !== null) {
|
|
message.reply(
|
|
`${message.mentions.members.first().user.tag}is in afk (${data1.AFK})`
|
|
);
|
|
} else {
|
|
return;
|
|
}
|
|
} else {
|
|
return;
|
|
}
|
|
} else {
|
|
return;
|
|
}
|
|
});
|