-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCommand Template.js
More file actions
32 lines (24 loc) · 943 Bytes
/
Command Template.js
File metadata and controls
32 lines (24 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const { EmbedBuilder,PermissionsBitField, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
const { Command } = require("../../../../Global/Structures/Default.Commands");
const { post } = require("node-superfetch");
const {Guild} = require("../../../../Global/Config/Guild")
const User = require("../../../../Global/Database/Users")
class template extends Command {
constructor(client) {
super(client, {
name: "",
description: "",
usage: "",
category: "",
aliases: [""],
enabled: true,
permissions: ["BOT_OWNER","GUILD_OWNER", PermissionsBitField.Flags.Administrator,"938836851307987048"],
});
}
onLoad(client) {
}
async onRequest (client, message, args,embed) {
let member = message.mentions.members.first() || message.guild.members.cache.get(args[0])
}
}
module.exports = template;