mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-06 14:20:38 +02:00
quel que petit truc mdr
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
module.exports = {
|
||||
name: 'dnd',
|
||||
description: 'Changer le status du bot en dnd',
|
||||
emote: '🔕',
|
||||
utilisation: 'dnd',
|
||||
category: 'botcontrol',
|
||||
async execute(message, args, client) {
|
||||
|
||||
client.user.setStatus('dnd');
|
||||
message.channel.send(`Le bot est maintenant en de pas deranger`);
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
module.exports = {
|
||||
name: 'idle',
|
||||
description: 'Changer le status du bot en idle',
|
||||
emote: '🔄',
|
||||
utilisation: 'idle',
|
||||
category: 'botcontrol',
|
||||
|
||||
async execute(message, args, client) {
|
||||
client.user.setStatus('idle');
|
||||
message.channel.send(`Le bot est maintenant en mode idle`);
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
module.exports = {
|
||||
name: 'invisible',
|
||||
description: 'Changer le status du bot en invisible',
|
||||
emote: '🕶️',
|
||||
utilisation: 'invisible',
|
||||
category: 'botcontrol',
|
||||
|
||||
async execute(message, args, client) {
|
||||
client.user.setStatus('invisible');
|
||||
message.channel.send(`Le bot est maintenant invisible`);
|
||||
},
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
module.exports = {
|
||||
name: 'online',
|
||||
description: 'Changer le status du bot en online',
|
||||
emote: '🟢',
|
||||
utilisation: 'online',
|
||||
category: 'botcontrol',
|
||||
|
||||
async execute(message, args, client) {
|
||||
client.user.setStatus('online');
|
||||
message.channel.send(`Le bot est maintenant en ligne`);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user