From 7eb5a87da63b42707b2ffdf3377d7247b4d406ab Mon Sep 17 00:00:00 2001 From: neoarz Date: Sat, 1 Nov 2025 19:53:19 -0400 Subject: [PATCH] feat(baitbot): add idevice and melonx --- cogs/events/baitbot.py | 18 +++++++++++++++++- cogs/help.py | 6 ++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/cogs/events/baitbot.py b/cogs/events/baitbot.py index a633b54..c8fec79 100644 --- a/cogs/events/baitbot.py +++ b/cogs/events/baitbot.py @@ -3,7 +3,7 @@ from discord.ext import commands from discord.ext.commands import Context import asyncio -# Make a pr to add your own server config here, you shouldn't need to touch the rest of the file +# Make a pr to add your own server config here, you shouldn't need to touch the rest of the file, please fill in all the values for your own server BAIT_CONFIGS = { "SideStore": { "guild_id": 949183273383395328, @@ -24,6 +24,22 @@ BAIT_CONFIGS = { "protected_role_id": 1432165329483857940, "log_channel_id": 1433987853184139365, }, + "idevice": { + "guild_id": 1329314147434758175, + "channel_ids": [ + 1434317669695492177, + ], + "protected_role_id": 1333666918548111373, + "log_channel_id": 1333673259446571022, + }, + "melonx": { + "guild_id": 1300369899704680479, + "channel_ids": [ + 1434327970679492830, + ], + "protected_role_id": 1300372178138697758, + "log_channel_id": 1300374786471366696, + }, } BAN_REASON = 'Detected bot/scammer in bait channel' diff --git a/cogs/help.py b/cogs/help.py index bc0bdd6..dec0279 100644 --- a/cogs/help.py +++ b/cogs/help.py @@ -13,7 +13,7 @@ class Help(commands.Cog, name="help"): interaction: discord.Interaction, current: str, ) -> list[app_commands.Choice[str]]: - categories = ["general", "fun", "moderation", "owner", "sidestore", "idevice", "melonx", "media", "miscellaneous", "utilities"] + categories = ["general", "fun", "moderation", "owner", "sidestore", "idevice", "melonx", "media", "miscellaneous", "utilities", "events"] suggestions = [] for category in categories: @@ -48,6 +48,7 @@ class Help(commands.Cog, name="help"): "sidestore": "sidestore", "utils": "utilities", "utilities": "utilities", + "events": "events", "sync": "owner", "logs": "owner", @@ -69,7 +70,8 @@ class Help(commands.Cog, name="help"): "melonx": "MeloNX troubleshooting commands", "media": "Media commands", "utilities": "Utility commands", - "miscellaneous": "Miscellaneous commands" + "miscellaneous": "Miscellaneous commands", + "events": "Events commands" } if category is None: