67 |
|
|
68 |
// INFORMATION |
// INFORMATION |
69 |
new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'), |
new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'), |
70 |
|
new SlashCommandBuilder().setName('lookup').setDescription('Lookup something') |
71 |
|
.addSubcommand(subcommand => subcommand.setName("user").setDescription("User lookup") |
72 |
|
.addUserOption(option => option.setName("user").setDescription("The user to search").setRequired(true)) |
73 |
|
) |
74 |
|
.addSubcommand(subcommand => subcommand.setName("guild").setDescription("Server/Guild lookup") |
75 |
|
.addStringOption(option => option.setName("guild_id").setDescription("The ID of the server/guild to lookup").setRequired(true)) |
76 |
|
) |
77 |
|
.addSubcommand(subcommand => subcommand.setName("avatar").setDescription("Avatar lookup using Google Image Search") |
78 |
|
.addUserOption(option => option.setName("user").setDescription("The user to lookup").setRequired(true)) |
79 |
|
), |
80 |
|
|
81 |
new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile') |
new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile') |
82 |
.addUserOption(option => option.setName('user').setDescription('The user')), |
.addUserOption(option => option.setName('user').setDescription('The user')), |
83 |
new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar') |
new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar') |
99 |
subcommand |
subcommand |
100 |
.setName('view') |
.setName('view') |
101 |
.setDescription('Get information/stats about a ballot') |
.setDescription('Get information/stats about a ballot') |
102 |
.addIntegerOption(option => option.setName('id').setDescription('The ballot ID'))), |
.addStringOption(option => option.setName('id').setDescription('The ballot ID'))), |
103 |
|
|
104 |
new SlashCommandBuilder().setName('embed').setDescription('Make an embed') |
new SlashCommandBuilder().setName('embed').setDescription('Make an embed') |
105 |
.addSubcommand(subcmd => |
.addSubcommand(subcmd => |