| 1234567891011121314151617 |
- const handler = async (m, {text}) => {
- const user = global.db.data.users[m.sender];
- user.afk = + new Date;
- user.afkReason = text;
- m.reply(`『 AFK 』
- > ᴇsᴛᴇ ᴜsᴜᴀʀɪᴏ : ${conn.getName(m.sender)} ᴇsᴛᴀ ɪɴᴀᴄᴛɪᴠᴏ.
- \`💤 NO LOS ETIQUETE 💤\`
- *☣️ ᴍᴏᴛɪᴠᴏs :* ${text ? ': ' + text : 'paja'}`);
- };
- handler.help = ['afk [alasan]'];
- handler.tags = ['econ'];
- handler.command = /^afk$/i;
- handler.money = 75
- handler.register = true
- export default handler;
|