/[sudobot]/trunk/commands/afk.js
ViewVC logotype

Annotation of /trunk/commands/afk.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (hide annotations)
Mon Jul 29 17:28:16 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 1177 byte(s)
Added AFK engine
1 rakin 26 const MessageEmbed = require("../src/MessageEmbed");
2    
3     module.exports = {
4     async handle(msg, cm) {
5     app.db.get("SELECT * FROM afk WHERE user_id = ?", [msg.author.id], async (err, data) => {
6     if (data) {
7     this.notAFK(msg, data);
8     }
9     else {
10     this.AFK(msg);
11     }
12     });
13     },
14     async notAFK(msg, data) {
15     app.db.get('DELETE FROM afk WHERE user_id = ?', [msg.author.id], async (err) => {
16     await msg.channel.send({
17     embeds: [
18     new MessageEmbed()
19     .setDescription('You\'re no longer AFK. You had **' + data.mentions + '** mentions in the servers where SudoBot is joined.')
20     ]
21     });
22     });
23     },
24     async AFK(msg) {
25     app.db.get('INSERT INTO afk(user_id, date, mentions) VALUES(?, ?, ?)', [msg.author.id, new Date().toISOString(), '0'], async (err) => {
26     await msg.channel.send({
27     embeds: [
28     new MessageEmbed()
29     .setDescription('Your status has been updated to AFK.')
30     ]
31     });
32     });
33     }
34     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26