chomens-bot-js/commands/discord.js
ChomeNS 6895a37104 bot.tellraw()
i totally did not used the search icon thing in vscode
2022-11-07 18:30:37 +07:00

23 lines
469 B
JavaScript

module.exports = {
name: 'discord',
alias: [],
description: 'Shows the discord invite',
usage: '',
trusted: 0,
execute: function(bot) {
bot.tellraw('@a', [
{
text: 'The Discord invite is ',
color: 'white',
},
{
text: 'https://discord.gg/xdgCkUyaA4',
color: 'blue',
clickEvent: {
action: 'open_url',
value: 'https://discord.gg/xdgCkUyaA4',
},
},
]);
},
};