67 |
new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar') |
new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar') |
68 |
.addUserOption(option => option.setName('user').setDescription('The user')), |
.addUserOption(option => option.setName('user').setDescription('The user')), |
69 |
new SlashCommandBuilder().setName('rolelist').setDescription('List all roles or show info about a role') |
new SlashCommandBuilder().setName('rolelist').setDescription('List all roles or show info about a role') |
70 |
.addUserOption(option => option.setName('role').setDescription('The role')), |
.addRoleOption(option => option.setName('role').setDescription('The role')) |
71 |
|
.addIntegerOption(option => option.setName('page').setDescription('The page number')), |
72 |
|
|
73 |
// AUTOMATION |
// AUTOMATION |
74 |
new SlashCommandBuilder().setName('ballot').setDescription('Ballot engine') |
new SlashCommandBuilder().setName('ballot').setDescription('Ballot engine') |
229 |
new SlashCommandBuilder().setName('history').setDescription('Fetch all moderation history for a user') |
new SlashCommandBuilder().setName('history').setDescription('Fetch all moderation history for a user') |
230 |
.addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)), |
.addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)), |
231 |
|
|
232 |
new SlashCommandBuilder().setName('clear').setDescription('Clear all messages in the current channel for a user') |
new SlashCommandBuilder().setName('clear').setDescription('Clear messages in bulk') |
233 |
.addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)), |
.addUserOption(option => option.setName('user').setDescription("The user")) |
234 |
|
.addIntegerOption(option => option.setName('count').setDescription("The amount of messages to delete").setMaxValue(400).setMinValue(0)) |
235 |
|
.addChannelOption(option => option.setName('channel').setDescription("The channel where the messages will be deleted")), |
236 |
|
|
237 |
new SlashCommandBuilder().setName('echo').setDescription('Re-send a message from the bot system') |
new SlashCommandBuilder().setName('echo').setDescription('Re-send a message from the bot system') |
238 |
.addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true)) |
.addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true)) |