2022-08-14 05:51:45 -04:00
|
|
|
module.exports = {
|
|
|
|
name: 'discord',
|
|
|
|
alias: [],
|
|
|
|
description: 'Shows the discord invite',
|
|
|
|
usage: '',
|
|
|
|
trusted: 0,
|
2022-11-28 06:32:49 -05:00
|
|
|
execute (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
|
2022-11-16 06:41:30 -05:00
|
|
|
bot.tellraw(selector, [
|
2022-11-05 21:10:42 -04:00
|
|
|
{
|
|
|
|
text: 'The Discord invite is ',
|
2022-11-27 02:35:28 -05:00
|
|
|
color: 'white'
|
2022-11-05 21:10:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'https://discord.gg/xdgCkUyaA4',
|
|
|
|
color: 'blue',
|
|
|
|
clickEvent: {
|
|
|
|
action: 'open_url',
|
2022-11-27 02:35:28 -05:00
|
|
|
value: 'https://discord.gg/xdgCkUyaA4'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
])
|
|
|
|
}
|
|
|
|
}
|