diff --git a/.env.example b/.env.example index dc33a41..969cea3 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ -.# Discord Bot Configuration. -DISCORD_TOKEN=your_bot_token_here(I won't share mine 💀💀💀) +# Discord Bot Configuration +DISCORD_TOKEN=your_bot_token_here GUILD_ID=1263067254153805905 # For faster slash command registration during development # Database Configuration diff --git a/CHANGELOG b/CHANGELOG index 8089352..e3ce0f6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -105,13 +105,14 @@ ## Previous Changelog -bot.Py -/utils/codingquestions.py -/cogs/afk.py -/cogs/bump.py -/cogs/codebuddy_help.py -/cogs/codebuddy_leaderboard.py -/cogs/codebuddy_quiz.py -/cogs/misc.py -/cogs/rules.py -/cogs/utility_extras.py +Files updated in earlier versions: +- bot.py +- utils/codingquestions.py +- cogs/afk.py +- cogs/bump.py +- cogs/codebuddy_help.py +- cogs/codebuddy_leaderboard.py +- cogs/codebuddy_quiz.py +- cogs/misc.py +- cogs/rules.py +- cogs/utility_extras.py diff --git a/README.md b/README.md index c16b5a9..6eb0308 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Eigen Bot supports **hybrid commands** - both prefix and slash commands: - Auto-complete and built-in Discord UI - Limited to essential commands to stay within Discord's 100 command limit -** Tip**: Use `?helpmenu` or `/help` to explore all available commands! +**Tip:** Use `?helpmenu` or `/help` to explore all available commands! --- @@ -456,7 +456,7 @@ Special thanks to the discord.py community and all contributors! [GitHub](https://github.com/youngcoder45/Eigen-bot-In-Python) • [Issues](https://github.com/youngcoder45/Eigen-bot-In-Python/issues) -Made with for Discord communities +Made with ❤️ for Discord communities diff --git a/bot.py b/bot.py index d546774..3b4ae24 100644 --- a/bot.py +++ b/bot.py @@ -30,7 +30,7 @@ logger = logging.getLogger(__name__) class Fun2OoshBot(commands.Bot): - """Main bot class for fun2oosh.""" + """Main bot class for Eigen Bot.""" def __init__(self, config: Config): intents = discord.Intents.default() diff --git a/cogs/starboard.py b/cogs/starboard.py index af27f91..2f951b9 100644 --- a/cogs/starboard.py +++ b/cogs/starboard.py @@ -46,13 +46,13 @@ async def starboard_info(self, ctx: commands.Context): "• Self-starring allowed by default\n" "• Real-time updates as more stars are added\n\n" " **Quick Setup:**\n" - "`f?starboard setup #starboard 3 ⭐`\n\n" + "`?starboard setup #starboard 3 ⭐`\n\n" " **Management Commands:**\n" - "• `f?starboard channel #channel` - Change starboard channel\n" - "• `f?starboard threshold 5` - Change star requirement\n" - "• `f?starboard emoji ` - Change star emoji\n" - "• `f?starboard stats` - View server statistics\n" - "• `f?starboard toggle` - Enable/disable system\n" + "• `?starboard channel #channel` - Change starboard channel\n" + "• `?starboard threshold 5` - Change star requirement\n" + "• `?starboard emoji ` - Change star emoji\n" + "• `?starboard stats` - View server statistics\n" + "• `?starboard toggle` - Enable/disable system\n" ), color=0xFFD700 # Gold color ) @@ -67,7 +67,7 @@ async def starboard_info(self, ctx: commands.Context): ), inline=False ) - embed.set_footer(text="fun2oosh Bot • Modern Discord Experience", icon_url=ctx.author.display_avatar.url) + embed.set_footer(text="Eigen Bot • Modern Discord Experience", icon_url=ctx.author.display_avatar.url) await ctx.send(embed=embed) """Starboard system for highlighting popular messages with star reactions""" @@ -295,7 +295,7 @@ async def starboard_setup(self, ctx: commands.Context, channel: discord.TextChan embed.add_field(name=" Features", value="Dynamic colors, thumbnails, smart formatting", inline=True) embed.add_field( name=" Next Steps", - value=f"Start starring messages with {emoji} reactions!\nUse `f?starboard stats` to track activity.", + value=f"Start starring messages with {emoji} reactions!\nUse `?starboard stats` to track activity.", inline=False ) embed.set_footer(text=" Your starboard will get more beautiful as messages get more stars!") @@ -411,7 +411,7 @@ async def starboard_stats(self, ctx: commands.Context): if not settings: await ctx.send(embed=create_error_embed( "Starboard Not Setup", - "Please run `f?starboard setup` first to configure the starboard system." + "Please run `?starboard setup` first to configure the starboard system." )) return