/[sudobot]/trunk/src/utils/help.ts
ViewVC logotype

Diff of /trunk/src/utils/help.ts

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 16 by rakin, Mon Jul 29 17:28:14 2024 UTC revision 37 by rakin, Mon Jul 29 17:28:18 2024 UTC
# Line 3  const MessageEmbed = require("../src/Mes Line 3  const MessageEmbed = require("../src/Mes
3  const { escapeRegex } = require("../src/util");  const { escapeRegex } = require("../src/util");
4    
5  module.exports = {  module.exports = {
6      version: "1.0.0-beta1",      version: "1.6.3",
7      commands: [      commands: [
8          {          {
9              name: 'addsnippet',              name: 'addsnippet',
# Line 14  module.exports = { Line 14  module.exports = {
14              notes: null              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',              name: 'announce',
26              shortBrief: "Announce something in the given channel.",              shortBrief: "Announce something in the given channel.",
27              description: "Announce something in the given channel. The channel should be set in the configuration.",              description: "Announce something in the given channel. The channel should be set in the configuration.",
# Line 24  module.exports = { Line 32  module.exports = {
32          {          {
33              name: 'ban',              name: 'ban',
34              shortBrief: "Ban someone in this server.",              shortBrief: "Ban someone in this server.",
35              description: null,              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> [Reason]",              structure: "<UserID|Mention> [-d=DAYS] [Reason]",
37              example: "`%%ban 385753607325075320`\n`%%ban @Someone You are spamming a lot`",              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              notes: null
39          },          },
40          {          {
# Line 46  module.exports = { Line 54  module.exports = {
54              notes: null              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',              name: 'delsnippet',
66              shortBrief: "Deletes a snippet.",              shortBrief: "Deletes a snippet.",
67              description: null,              description: null,
# Line 86  module.exports = { Line 102  module.exports = {
102              notes: null              notes: null
103          },          },
104          {          {
105                name: 'history',
106                shortBrief: "Show moderation history for a user.",
107                description: null,
108                structure: "<UserMention|UserID>",
109                example: "`%%history 27372628277272625`\n`%%history @Someone`",
110                notes: null
111            },
112            {
113              name: 'httpcat',              name: 'httpcat',
114              shortBrief: "Get some funny cat memes related to HTTP.",              shortBrief: "Get some funny cat memes related to HTTP.",
115              description: "Get some funny cat memes related to HTTP status codes, using http.cat API.",              description: "Get some funny cat memes related to HTTP status codes, using http.cat API.",
# Line 225  module.exports = { Line 249  module.exports = {
249              notes: null              notes: null
250          },          },
251          {          {
252                name: 'send',
253                shortBrief: "Send a DM to a user.",
254                description: null,
255                structure: "<UserID|Mention> <content>",
256                example: "`%%send 278358918549759428 Hello world`\n`%%send @Someone Hello world`",
257                notes: null
258            },
259            {
260              name: 'spamfilter',              name: 'spamfilter',
261              shortBrief: "Change the spam filter configuration keys.",              shortBrief: "Change the spam filter configuration keys.",
262              description: null,              description: null,
# Line 233  module.exports = { Line 265  module.exports = {
265              notes: null              notes: null
266          },          },
267          {          {
268                name: 'stats',
269                shortBrief: "Show the server stats.",
270                description: null,
271                structure: "",
272                example: "`%%stats",
273                notes: null
274            },
275            {
276              name: 'unban',              name: 'unban',
277              shortBrief: "Unban a user from this server.",              shortBrief: "Unban a user from this server.",
278              description: null,              description: null,
# Line 262  module.exports = { Line 302  module.exports = {
302              options: {              options: {
303                  "--no-send": "Do not send a confirmation message to the locked channel",                  "--no-send": "Do not send a confirmation message to the locked channel",
304                  "--everyone": "Lock the channels for @everyone rather than the general role",                  "--everyone": "Lock the channels for @everyone rather than the general role",
305                    "--raid": "Unlock all Raid-locked channels"
306              }              }
307          },          },
308          {          {
# Line 316  module.exports = { Line 357  module.exports = {
357      },      },
358      async handle(msg, cm) {      async handle(msg, cm) {
359          if (typeof cm.args[0] === 'undefined') {          if (typeof cm.args[0] === 'undefined') {
             // await msg.reply({  
             //     embeds: [  
             //         new MessageEmbed()  
             //         .setColor('#f14a60')  
             //         .setDescription(`This command requires at least one argument.`)  
             //     ]  
             // });  
   
360              await msg.reply({              await msg.reply({
361                  embeds: [                  embeds: [
362                      new MessageEmbed()                      new MessageEmbed()

Legend:
Removed from v.16  
changed lines
  Added in v.37

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26