first commit

This commit is contained in:
imbwbl
2024-01-18 22:40:05 +01:00
commit db4388e70a
13 changed files with 528 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import {ActivityType} from "discord.js";
export async function execute(client) {
client.user.setPresence({
activities: [{name: `Ankhal`, type: ActivityType.Listening}],
status: 'idle',
afk: true
});
client.user.setStatus('idle')
client.user.setAFK(true)
}
+3
View File
@@ -0,0 +1,3 @@
export async function execute(client, oldMember, newMember) {
}