Adding 8-ball command
This commit is contained in:
@ -1,10 +1,19 @@
|
||||
const { EmbedBuilder } = require('discord.js');
|
||||
const { ContextMenuCommandBuilder, ApplicationCommandType } = require('discord.js');
|
||||
|
||||
module.exports = {
|
||||
name: "ping",
|
||||
description: "Returns websocket latency",
|
||||
|
||||
run: async (client, interaction) => {
|
||||
|
||||
|
||||
const { ContextMenuCommandBuilder, ApplicationCommandType } = require('discord.js');
|
||||
|
||||
const data = new ContextMenuCommandBuilder()
|
||||
.setName('User Information')
|
||||
.setType(ApplicationCommandType.User);
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor("#FF0000")
|
||||
.setTitle("🏓 Pong!")
|
||||
|
Reference in New Issue
Block a user