/[sudobot]/trunk/src/commands/moderation/ShotCommand.ts
ViewVC logotype

Diff of /trunk/src/commands/moderation/ShotCommand.ts

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

revision 384 by rakin, Mon Jul 29 17:29:54 2024 UTC revision 545 by rakin, Mon Jul 29 17:30:45 2024 UTC
# Line 1  Line 1 
1    /**
2    * This file is part of SudoBot.
3    *
4    * Copyright (C) 2021-2022 OSN Inc.
5    *
6    * SudoBot is free software; you can redistribute it and/or modify it
7    * under the terms of the GNU Affero General Public License as published by
8    * the Free Software Foundation, either version 3 of the License, or
9    * (at your option) any later version.
10    *
11    * SudoBot is distributed in the hope that it will be useful, but
12    * WITHOUT ANY WARRANTY; without even the implied warranty of
13    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14    * GNU Affero General Public License for more details.
15    *
16    * You should have received a copy of the GNU Affero General Public License
17    * along with SudoBot. If not, see <https://www.gnu.org/licenses/>.
18    */
19    
20  import { CommandInteraction, ContextMenuInteraction, GuildMember, Message, User } from 'discord.js';  import { CommandInteraction, ContextMenuInteraction, GuildMember, Message, User } from 'discord.js';
21  import BaseCommand from '../../utils/structures/BaseCommand';  import BaseCommand from '../../utils/structures/BaseCommand';
22  import DiscordClient from '../../client/Client';  import DiscordClient from '../../client/Client';
# Line 33  export default class ShotCommand extends Line 52  export default class ShotCommand extends
52          let dm = true;          let dm = true;
53          let reason: string | undefined;          let reason: string | undefined;
54                    
55            if (msg instanceof CommandInteraction || msg instanceof ContextMenuInteraction) {
56                await msg.deferReply();  
57            }
58            
59          if (options.isInteraction) {          if (options.isInteraction) {
60              user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member'));              user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member'));
61    
62              if (!user) {              if (!user) {
63                  await msg.reply({                  await this.deferReply(msg, {
64                      embeds: [                      embeds: [
65                          new MessageEmbed()                          new MessageEmbed()
66                          .setColor('#f14a60')                          .setColor('#f14a60')
# Line 63  export default class ShotCommand extends Line 86  export default class ShotCommand extends
86                  user = user2;                  user = user2;
87              }              }
88              catch (e) {              catch (e) {
89                  await msg.reply({                  await this.deferReply(msg, {
90                      embeds: [                      embeds: [
91                          new MessageEmbed()                          new MessageEmbed()
92                          .setColor('#f14a60')                          .setColor('#f14a60')
# Line 84  export default class ShotCommand extends Line 107  export default class ShotCommand extends
107          }          }
108    
109          if (user.id === client.user?.id) {          if (user.id === client.user?.id) {
110              await msg.reply("Oh no no no... wait wait, you can't just do that with me!?!? Can you? :grin:");              const random = Math.random() >= 0.5;
111                
112                await this.deferReply(msg, {
113                    content: `Oh no no no... wait wait, you can't just do that with me${random ? "... I'm such an innocent bot :innocent:, PWEASE don't do that :pleading_face:" : "!?!? Can you?"}`,
114                    files: [random ? "https://tenor.com/view/folded-hands-emoji-funny-animals-gray-cat-cute-pwease-gif-14039745.gif" : 'https://tenor.com/view/are-you-even-capable-vera-bennett-wentworth-can-you-handle-this-are-you-qualified-gif-22892513.gif']
115                });
116    
117              return;              return;
118          }          }
119    
# Line 135  export default class ShotCommand extends Line 164  export default class ShotCommand extends
164              console.log(e);                          console.log(e);            
165          }          }
166    
167          await msg.reply({          await this.deferReply(msg, {
168              embeds: [              embeds: [
169                  new MessageEmbed()                  new MessageEmbed()
170                  .setAuthor({                  .setAuthor({

Legend:
Removed from v.384  
changed lines
  Added in v.545

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26