Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.# Discord Bot Configuration.
DISCORD_TOKEN=your_bot_token_here(I won't share mine 💀💀💀)
# Discord Bot Configuration
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lol

DISCORD_TOKEN=your_bot_token_here
GUILD_ID=1263067254153805905 # For faster slash command registration during development

# Database Configuration
Expand Down
21 changes: 11 additions & 10 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

---

Expand Down Expand Up @@ -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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks here

</div>

Expand Down
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
18 changes: 9 additions & 9 deletions cogs/starboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Damm u actually helped a lot we all devs forgot about this GG (do star the project btw)

),
color=0xFFD700 # Gold color
)
Expand All @@ -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"""

Expand Down Expand Up @@ -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!")
Expand Down Expand Up @@ -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."
))
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright the PR looks good to me I'll approve Thanks for your Contribution. I appreciate it.

return

Expand Down
Loading