[stable everything] help >>> commands
Browse files
app.py
CHANGED
@@ -59,7 +59,15 @@ bot = commands.Bot(command_prefix='!', intents=intents)
|
|
59 |
async def on_ready():
|
60 |
print('Logged on as', bot.user)
|
61 |
bot.log_channel = bot.get_channel(1100458786826747945) # 1100458786826747945 = bot-test, 1107006391547342910 = lunarbot server
|
62 |
-
#---------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
async def safetychecks(ctx):
|
64 |
try:
|
65 |
if ctx.author.bot:
|
|
|
59 |
async def on_ready():
|
60 |
print('Logged on as', bot.user)
|
61 |
bot.log_channel = bot.get_channel(1100458786826747945) # 1100458786826747945 = bot-test, 1107006391547342910 = lunarbot server
|
62 |
+
#---------------------------------------------------------------------------------------------------------------------------------------------
|
63 |
+
@bot.command()
|
64 |
+
async def commands(ctx):
|
65 |
+
try:
|
66 |
+
if await safetychecks(ctx):
|
67 |
+
await ctx.reply(f"Use !jojo !disney !spidey or !sketch. Have fun! π€π")
|
68 |
+
except Exception as e:
|
69 |
+
print(f"Error: unable to help :(")
|
70 |
+
#---------------------------------------------------------------------------------------------------------------------------------------------
|
71 |
async def safetychecks(ctx):
|
72 |
try:
|
73 |
if ctx.author.bot:
|