-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslash_cmds.py
369 lines (335 loc) · 14.9 KB
/
slash_cmds.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
import discord
from discord.ext import commands
from discord import app_commands
import pyfiglet
from docutils.nodes import description
# Initialize the bot with a command prefix
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix="+", intents=intents)
@bot.event
async def on_ready():
await bot.tree.sync()
def all_slash_commands(bot):
@bot.tree.command(name="3d", description='convert the normal text to ASCII styled 3D text')
async def ascii(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='3-d')
embed = discord.Embed(
title="ASCII 3D Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Slant text convertion
# ------------------------------
@bot.tree.command(name="slant", description="convert the normal text to ASCII styled slant text")
async def slant_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='slant')
embed = discord.Embed(
title="ASCII Slant Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Doom text convertion
# ------------------------------
@bot.tree.command(name="doom", description="convert the normal text to ASCII styled doom text")
async def doom_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='doom')
embed = discord.Embed(
title="ASCII Doom Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Alphabet text convertion
# ------------------------------
@bot.tree.command(name='alphabet', description="convert the normal text to ASCII styled alphabet text")
async def alphabet_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='alphabet')
embed = discord.Embed(
title="ASCII Alphabet Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Banner-3D text convertion
# ------------------------------
@bot.tree.command(name='banner3-d', description="convert the normal text to ASCII styled banner3-D text")
async def banner3d_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='banner3-d')
embed = discord.Embed(
title="ASCII Banner3-D Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Doh text convertion
# ------------------------------
@bot.tree.command(name="doh", description="convert the normal text to ASCII styled doh text")
async def doh_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='doh')
embed = discord.Embed(
title="ASCII Doh Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Isometric1 text convertion
# ------------------------------
@bot.tree.command(name="isometric1", description="convert the normal text to ASCII styled isometric1 text")
async def isometric1_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='isometric1')
embed = discord.Embed(
title="ASCII Isometric1 Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Starwars text convertion
# ------------------------------
@bot.tree.command(name="starwars", description="convert the normal text to ASCII styled starwars text")
async def starwars_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='starwars')
embed = discord.Embed(
title="ASCII Starwars Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Block text convertion
# ------------------------------
@bot.tree.command(name="block", description="convert the normal text to ASCII styled block text")
async def block_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='block')
embed = discord.Embed(
title="ASCII Block Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Digital text convertion
# ------------------------------
@bot.tree.command(name="digital", description="convert the normal text to ASCII styled digital text")
async def digital_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='digital')
embed = discord.Embed(
title="ASCII Digital Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Shadow text convertion
# ------------------------------
@bot.tree.command(name="shadow", description="convert the normal text to ASCII styled shadow text")
async def shadow_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='shadow')
embed = discord.Embed(
title="ASCII Shadow Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Speed text convertion
# ------------------------------
@bot.tree.command(name="speed", description="convert the normal text to ASCII styled speed text")
async def speed_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='speed')
embed = discord.Embed(
title="ASCII Speed Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Epic text convertion
# ------------------------------
@bot.tree.command(name="epic", description="convert the normal text to ASCII styled epic text")
async def epic_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='epic')
embed = discord.Embed(
title="ASCII Epic Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Rectangles text convertion
# ------------------------------
@bot.tree.command(name="rectangles", description="convert the normal text to ASCII styled rectangles text")
async def rectangles_text(interaction: discord.Interaction, text: str):
try:
result = pyfiglet.figlet_format(text, font='rectangles')
embed = discord.Embed(
title="ASCII Rectangles Text",
description=f"```{result}```",
color=discord.Color.dark_blue()
)
await interaction.response.send_message(embed=embed)
except Exception as e:
embed = discord.Embed(
title="Error",
description=f"An error occurred: {str(e)}",
color=discord.Color.red()
)
await interaction.response.send_message(embed=embed)
# ------------------------------
# Cosmic text convertion
# ------------------------------
# @bot.tree.command(name="cosmic", description="convert the normal text to ASCII styled cosmic text")
# async def cosmic_text(interaction: discord.Interaction, text: str):
# try:
# result = pyfiglet.figlet_format(text, font='cosmic')
# embed = discord.Embed(
# title="ASCII Cosmic Text",
# description=f"{result}",
# color=discord.Color.dark_blue()
# )
# await interaction.response.send_message(embed=embed)
# except Exception as e:
# embed = discord.Embed(
# title="Error",
# description=f"An error occurred: {str(e)}",
# color=discord.Color.red()
# )
# await interaction.response.send_message(embed=embed)
@bot.tree.command(name="bothelp", description="know about the bot and see all available commands")
async def hel_cmd(interaction: discord.Interaction):
help_desc = """
**What bot does?**
AsciiAce bot designed to convert the normal text to ASCII Text. Transform plain text into eye-catching ASCII Text in a variety of styles, perfect for adding flair to your messages and making your server more fun.
**Available commands?**
Type ```/``` to see all available commands, each and every command perform best operation to convert the normal text to beautiful **ASCII** Text :)
|A|s|c|i|i|A|c|e|
+-+-+-+-+-+-+-+-+
"""
bot_avatar_url = bot.user.avatar.url if bot.user.avatar else bot.user.default_avatar.url
embed = discord.Embed(
title="AsciiAce bot help",
description=help_desc,
color=discord.Color.darker_gray()
)
embed.set_thumbnail(url=bot_avatar_url)
embed.set_footer(text=f"{bot.user.name}", icon_url=bot_avatar_url)
await interaction.response.send_message(embed=embed)
@bot.event
async def on_command_error(ctx, error):
if isinstance(error, commands.CommandNotFound):
await ctx.send("Sorry, I don't recognize that command.")
else:
await ctx.send("An error occurred while processing your command.")