chomens-bot-js/commands/test.js
2022-11-27 14:35:28 +07:00

40 lines
1.1 KiB
JavaScript

/* eslint-disable max-len */
const { MessageEmbed } = require('discord.js')
module.exports = {
name: 'test',
alias: [],
description: 'Tests if the bot is working',
usage: '',
trusted: 0,
execute: function (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
bot.tellraw(selector, [
{
text: `Username: ${username},`,
color: 'green'
},
{
text: ` Raw username: ${usernameraw},`,
color: 'green'
},
{
text: ` Sender UUID: ${sender},`,
color: 'green'
},
{
text: ` Prefix: ${prefix},`,
color: 'green'
},
{
text: ` Args: ${args.join(', ').toString()}`,
color: 'green'
}
])
},
discordExecute: function (bot, username, usernameraw, sender, prefix, args, channeldc) {
const Embed = new MessageEmbed()
.setColor('#FFFF00')
.setTitle('Hello!')
.setDescription('This is the first ever command to be discordified!' + '\n' + `More info: Username: ${username}, Prefix: ${prefix}, Args: ${args.join(' ')}`)
channeldc.send({ embeds: [Embed] })
}
}