lucatutz
lucatutz
DIAdiscord.js - Imagine an app
Created by lucatutz on 11/7/2024 in #djs-questions
Ping
i got it
10 replies
DIAdiscord.js - Imagine an app
Created by lucatutz on 11/7/2024 in #djs-questions
Ping
it worked, thanks
10 replies
DIAdiscord.js - Imagine an app
Created by lucatutz on 11/7/2024 in #djs-questions
Ping
const { SlashCommandBuilder } = require('discord.js');
const { EmbedBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('[📚 Utility & Info] > See the BOT ping!'),

async execute(interaction, client){
await interaction.reply(`🏓 | Pong
> Latency is **${client.ws.ping}**ms
`)
},
}
const { SlashCommandBuilder } = require('discord.js');
const { EmbedBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('[📚 Utility & Info] > See the BOT ping!'),

async execute(interaction, client){
await interaction.reply(`🏓 | Pong
> Latency is **${client.ws.ping}**ms
`)
},
}
10 replies
DIAdiscord.js - Imagine an app
Created by lucatutz on 11/7/2024 in #djs-questions
Ping
node v20.17.0
10 replies
DIAdiscord.js - Imagine an app
Created by lucatutz on 11/7/2024 in #djs-questions
Ping
10 replies