quel que petit truc mdr

This commit is contained in:
VALOU3336
2024-02-24 20:18:39 +01:00
parent 365ae0f973
commit b070fe6edf
15 changed files with 179 additions and 35 deletions
+12
View File
@@ -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`);
},
};
+12
View File
@@ -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`);
},
};
+12
View File
@@ -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`);
},
};
+12
View File
@@ -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`);
},
};