/[sudobot]/trunk/commands/help.js
ViewVC logotype

Contents of /trunk/commands/help.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 45 - (show annotations)
Mon Jul 29 17:28:20 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 16781 byte(s)
Release version 1.8.0

* Added setTimeout() and DB combination support so that the timeouts would never get lost even if the bot stops
* Added messages scheduling, expiring and both in one support
1 const { MessageActionRow, MessageButton } = require("discord.js");
2 const MessageEmbed = require("../src/MessageEmbed");
3 const { escapeRegex } = require("../src/util");
4
5 module.exports = {
6 version: "1.8.0",
7 commands: [
8 {
9 name: 'addsnippet',
10 shortBrief: "Adds a snippet.",
11 description: null,
12 structure: "<Name> <Content>",
13 example: "`%%addsnippet roles There are 2 roles`\n`%%addsnippet roles There are 2 roles\nAdmin - Administrator\nMod - Moderator`",
14 notes: null
15 },
16 {
17 name: 'afk',
18 shortBrief: "Keeps track of your mentions and tells other users that you're AFK.",
19 description: null,
20 structure: "[Reason]",
21 example: "`%%afk`\n`%%afk Having dinner`",
22 notes: null
23 },
24 {
25 name: 'announce',
26 shortBrief: "Announce something in the given channel.",
27 description: "Announce something in the given channel. The channel should be set in the configuration.",
28 structure: "<Content>",
29 example: "`%%announce Hello there!\nWe've just finished our job!\n@everyone`",
30 notes: null
31 },
32 {
33 name: 'ban',
34 shortBrief: "Ban someone in this server.",
35 description: "Ban a user. `-d` is the number days old messages to delete. It must be in range 0-7. If `-d` is passed then an argument after it is required.",
36 structure: "<UserID|Mention> [-d=DAYS] [Reason]",
37 example: "`%%ban 385753607325075320`\n`%%ban @Someone You are spamming a lot`\n`%%ban @Someone -d 5`\n`%%ban 385753607325075320 -d 5 You are spamming a lot`",
38 notes: null
39 },
40 {
41 name: 'bean',
42 shortBrief: "Bean someone in this server.",
43 description: "Bean someone. It doesn't do anything except pretending.",
44 structure: "<UserID|Mention> [Reason]",
45 example: "`%%bean 385753607325075320`\n`%%bean @Someone You are spamming a lot`",
46 notes: null
47 },
48 {
49 name: 'cat',
50 shortBrief: "Get a random kitty picture.",
51 description: "Fetches a random cat picture from `thecatapi.com` API.",
52 structure: "",
53 example: "`%%cat`",
54 notes: null
55 },
56 {
57 name: 'clear',
58 shortBrief: "Clear all messages from a user.",
59 description: "Clear all messages from a user, in the current channel. This might take a while.",
60 structure: "<UserID|UserMention>",
61 example: "`%%clear 83474924191884727`\n`%%clear @Someone`",
62 notes: null
63 },
64 {
65 name: 'delsnippet',
66 shortBrief: "Deletes a snippet.",
67 description: null,
68 structure: "<Name>",
69 example: "`%%delsnippet roles`",
70 notes: null
71 },
72 {
73 name: 'dog',
74 shortBrief: "Get a random doggy picture.",
75 description: "Fetches a random cat picture from `thedogapi.com` API.",
76 structure: "",
77 example: "`%%dog`",
78 notes: null
79 },
80 {
81 name: 'echo',
82 shortBrief: "Echo (re-send) a message.",
83 description: "Re-send a message from the bot.",
84 structure: "<content> [channelMention]",
85 example: "`%%echo Something\nVery Cool`\n`%%echo Something\nVery Cool #general`",
86 notes: null
87 },
88 {
89 name: 'expire',
90 shortBrief: "Echo (re-send) a message and delete it after the given time.",
91 description: "Re-send a message from the bot and delete it automatically after the given time interval.",
92 structure: "<timeInterval> <content> [channelMention]",
93 example: "`%%echo 25m Something\nVery Cool`\n`%%echo 1h Something\nVery Cool #general`",
94 notes: null
95 },
96 {
97 name: 'expiresc',
98 shortBrief: "Schedule a message and delete it after the given time.",
99 description: "Schedule a message from the bot and delete it automatically after the given time interval.",
100 structure: "<scheduleTimeInterval> <expireTimeInterval> <content> [channelMention]",
101 example: "`%%echo 25m 5h Something\nVery Cool`\n`%%echo 1h 7d Something\nVery Cool #general`",
102 notes: null
103 },
104 {
105 name: 'general-role',
106 shortBrief: "Set the general role.",
107 description: null,
108 structure: "<RoleID|RoleMention>",
109 example: "`%%general-role 937923625698638`\n`%%general-role @General`",
110 notes: null
111 },
112 {
113 name: 'help',
114 shortBrief: "Show this help and exit.",
115 description: null,
116 structure: "[command]",
117 example: "`%%help`\n`%%help mute`",
118 notes: null
119 },
120 {
121 name: 'history',
122 shortBrief: "Show moderation history for a user.",
123 description: null,
124 structure: "<UserMention|UserID>",
125 example: "`%%history 27372628277272625`\n`%%history @Someone`",
126 notes: null
127 },
128 {
129 name: 'httpcat',
130 shortBrief: "Get some funny cat memes related to HTTP.",
131 description: "Get some funny cat memes related to HTTP status codes, using http.cat API.",
132 structure: "<status>",
133 example: "`%%httpcat 403`",
134 notes: null
135 },
136 {
137 name: 'httpdog',
138 shortBrief: "Get some funny dog memes related to HTTP.",
139 description: "Get some funny dog memes related to HTTP status codes, using http.dog API.",
140 structure: "<status>",
141 example: "`%%httpdog 403`",
142 notes: null
143 },
144 {
145 name: 'kick',
146 shortBrief: "Kick someone from this server.",
147 description: null,
148 structure: "<UserID|Mention> [Reason]",
149 example: "`%%kick 385753607325075320`\n`%%kick @Someone You are spamming a lot`",
150 notes: null
151 },
152 {
153 name: 'lock',
154 shortBrief: "Lock a specific channel.",
155 description: "Makes the given channel read-only for the general members. If no channel is present, the current channel will be locked.",
156 structure: "[ChannelID|ChannelMention] [...options]",
157 example: "`%%lock 385753607325075320`\n`%%lock #general`\n`%%lock`",
158 notes: null,
159 options: {
160 "--no-send": "Do not send a confirmation message to the locked channel",
161 }
162 },
163 {
164 name: 'lockall',
165 shortBrief: "Lock all the channels given in the configuration.",
166 description: "Makes the given channels read-only for the general members.",
167 structure: "[...options]",
168 example: "`%%lockall --no-send\n`%%lockall`\n`%%lockall --everyone`",
169 notes: null,
170 options: {
171 "--no-send": "Do not send a confirmation message to the locked channel",
172 }
173 },
174 {
175 name: 'mod-role',
176 shortBrief: "Set the moderator role.",
177 description: null,
178 structure: "<RoleID|RoleMention>",
179 example: "`%%mod-role 937923625698638`\n`%%mod-role @Moderator`",
180 notes: null
181 },
182 {
183 name: 'mute',
184 shortBrief: "Mute someone in this server.",
185 description: null,
186 structure: "<UserID|Mention> [-t=DURATION] [Reason]",
187 example: "`%%mute 385753607325075320`\n`%%mute @Someone You are spamming a lot`\n`%%mute @Someone -t 10m You are spamming a lot`",
188 options: {
189 "-t": "Set the mute duration"
190 },
191 notes: null
192 },
193 {
194 name: 'muted-role',
195 shortBrief: "Set the muted role.",
196 description: null,
197 structure: "<RoleID|RoleMention>",
198 example: "`%%muted-role 937923625698638`\n`%%muted-role @Muted`",
199 notes: null
200 },
201 {
202 name: 'mvsnippet',
203 shortBrief: "Rename a snippet.",
204 description: null,
205 structure: "<oldName> <newName>",
206 example: "`%%mvsnippet abc bca`",
207 notes: null
208 },
209 {
210 name: 'note',
211 shortBrief: "Take a note about an user.",
212 description: null,
213 structure: "<UserID|UserMention> <note>",
214 example: "`%%note @Someone Simple note.`",
215 notes: null
216 },
217 {
218 name: 'notedel',
219 shortBrief: "Delete a note.",
220 description: null,
221 structure: "<NoteID>",
222 example: "`%%notedel 922`",
223 notes: null
224 },
225 {
226 name: 'noteget',
227 shortBrief: "Get a note.",
228 description: null,
229 structure: "<NoteID>",
230 example: "`%%noteget 922`",
231 notes: null
232 },
233 {
234 name: 'notes',
235 shortBrief: "Get all notes for a specific user.",
236 description: null,
237 structure: "<UserID|UserMention>",
238 example: "`%%notes @Someone`",
239 notes: null
240 },
241 {
242 name: 'pixabay',
243 shortBrief: "Fetch images from Pixabay.",
244 description: "Search & fetch images from Pixabay API.\n\nAvailable Subcommands:\n\tphoto - Fetch photos only.\n\tvector - Fetch vectors only.\n\tillustration - Fetch illustrations only\n\timage - Fetch any image.",
245 structure: "<subcommand> [query]",
246 example: "`%%pixabay image`\n`%%pixabay photo birds`",
247 notes: null
248 },
249 {
250 name: 'prefix',
251 shortBrief: "Change the bot prefix.",
252 description: null,
253 structure: "<NewPrefix>",
254 example: "`%%prefix -`",
255 notes: null
256 },
257 {
258 name: 'schedule',
259 shortBrief: "Echo (re-send) a message after the given time.",
260 description: "Re-send a message from the bot automatically after the given time interval.",
261 structure: "<timeInterval> <content> [channelMention]",
262 example: "`%%echo 25m Something\nVery Cool`\n`%%echo 1h Something\nVery Cool #general`",
263 notes: null
264 },
265 {
266 name: 'setconfig',
267 shortBrief: "Change the bot configuration keys.",
268 description: null,
269 structure: "<key> <value>",
270 example: "`%%setconfig debug true`",
271 notes: null
272 },
273 {
274 name: 'send',
275 shortBrief: "Send a DM to a user.",
276 description: null,
277 structure: "<UserID|Mention> <content>",
278 example: "`%%send 278358918549759428 Hello world`\n`%%send @Someone Hello world`",
279 notes: null
280 },
281 {
282 name: 'spamfilter',
283 shortBrief: "Change the spam filter configuration keys.",
284 description: null,
285 structure: "<key> <value>",
286 example: "`%%spamfilter include #general`",
287 notes: null
288 },
289 {
290 name: 'stats',
291 shortBrief: "Show the server stats.",
292 description: null,
293 structure: "",
294 example: "`%%stats",
295 notes: null
296 },
297 {
298 name: 'unban',
299 shortBrief: "Unban a user from this server.",
300 description: null,
301 structure: "<UserID>",
302 example: "`%%unban 2946255269594753792`",
303 notes: null
304 },
305 {
306 name: 'unlock',
307 shortBrief: "Unlock a specific channel.",
308 description: "Makes the given channel writable for the general members. If no channel is present, the current channel is unlocked.",
309 structure: "[ChannelID|ChannelMention] [...options]",
310 example: "`%%unlock 385753607325075320`\n`%%unlock #general`\n`%%unlock`",
311 notes: null,
312 options: {
313 "--no-send": "Do not send a confirmation message to the locked channel",
314 }
315 },
316 {
317 name: 'unlockall',
318 shortBrief: "Unlock all the channels given in the configuration.",
319 description: "Makes the given channels writable for the general members.",
320 structure: "[...options]",
321 example: "`%%unlockall --no-send\n`%%unlockall`\n`%%unlockall --everyone`",
322 notes: null,
323 options: {
324 "--no-send": "Do not send a confirmation message to the locked channel",
325 "--raid": "Unlock all Raid-locked channels"
326 }
327 },
328 {
329 name: 'unmute',
330 shortBrief: "Unmute someone in this server.",
331 description: null,
332 structure: "<UserID|Mention>",
333 example: "`%%unmute 385753607325075320`\n`%%unmute @Someone You are spamming a lot`",
334 notes: null
335 },
336 {
337 name: 'warn',
338 shortBrief: "Warn someone in this server.",
339 description: null,
340 structure: "<UserID|Mention> [Reason]",
341 example: "`%%warn 385753607325075320`\n`%%warn @Someone You are spamming a lot`",
342 notes: null
343 },
344 {
345 name: 'warndel',
346 shortBrief: "Delete a warning.",
347 description: null,
348 structure: "<ID>",
349 example: "`%%warndel 39`",
350 notes: null
351 },
352 {
353 name: 'warning',
354 shortBrief: "Show a warning.",
355 description: null,
356 structure: "<ID>",
357 example: "`%%warning 39`",
358 notes: null
359 },
360 {
361 name: 'warnings',
362 shortBrief: "Show all warnings.",
363 description: "Show all warnings in this server. Passing an user will only show their warnings.",
364 structure: "[UserId|Mention]",
365 example: "`%%warnings`\n`%%warnings 948489127957979253978538`",
366 notes: null
367 },
368 ],
369 async render() {
370 let string = '';
371
372 for (let cmd of this.commands) {
373 string += `\n\n**${cmd.name}**\n${cmd.shortBrief}`;
374 }
375
376 return string;
377 },
378 async handle(msg, cm) {
379 if (typeof cm.args[0] === 'undefined') {
380 await msg.reply({
381 embeds: [
382 new MessageEmbed()
383 .setDescription("The command list.\n\n`<...>` means required argument, `[...]` means optional argument.\n\nRun `" + app.config.get('prefix') + "help <commandName>` for more information about a specific command.\n" + await this.render())
384 .setTitle('Help')
385 ],
386 });
387
388 return;
389 }
390
391 const cmd = this.commands.find(c => c.name === cm.args[0]);
392
393 if (!cmd) {
394 await msg.reply({
395 embeds: [
396 new MessageEmbed()
397 .setColor('#f14a60')
398 .setDescription(`Invalid command \`${cm.args[0]}\`.`)
399 ]
400 });
401
402 return;
403 }
404
405 let fields = [
406 {
407 name: "Usage",
408 value: `\`${app.config.get('prefix')}${cmd.name}\`` + (cmd.structure.trim() !== '' ? ` \`${cmd.structure}\`` : '')
409 },
410 {
411 name: 'Examples',
412 value: cmd.example.replace(/\%\%/g, app.config.get('prefix'))
413 }
414 ];
415
416 if (cmd.options !== undefined) {
417 let str = '';
418
419 for (let opt in cmd.options)
420 str += `\`${opt}\` - ${cmd.options[opt]}\n`;
421
422 str = str.substring(0, str.length - 1);
423
424 fields.push({
425 name: 'Options',
426 value: str
427 });
428 }
429
430 if (cmd.notes !== null) {
431 fields.push({
432 name: "Notes",
433 value: cmd.notes
434 });
435 }
436
437 await msg.reply({
438 embeds: [
439 new MessageEmbed()
440 .setTitle(`${app.config.get('prefix')}${cmd.name}`)
441 .setDescription("`<...>` means required argument, `[...]` means optional argument.\n\n" + (cmd.description !== null ? cmd.description : cmd.shortBrief))
442 .addFields(fields)
443 ]
444 });
445 }
446 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26