68 lines
3.2 KiB
Python
68 lines
3.2 KiB
Python
# ╔══════════════════════════════════════════════════════════════════╗
|
|
# ║ ║
|
|
# ║ +-+-+-+-+-+-+-+-+ ║
|
|
# ║ |H|e|x|a|H|o|s|t| ║
|
|
# ║ +-+-+-+-+-+-+-+-+ ║
|
|
# ║ ║
|
|
# ║ © 2026 HexaHost — All Rights Reserved ║
|
|
# ║ ║
|
|
# ║ discord ── https://discord.gg/hexahost ║
|
|
# ║ github ── https://github.com/theoneandonlymace ║
|
|
# ║ ║
|
|
# ╚══════════════════════════════════════════════════════════════════╝
|
|
|
|
import discord
|
|
from utils.emoji import CHANNEL, TICK
|
|
from discord.ext import commands
|
|
|
|
class Unhide(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
self.color = discord.Color.from_rgb(255,0, 0) # Green color for success
|
|
|
|
@commands.hybrid_command(
|
|
name="unhide",
|
|
help="Unhides a channel for the default role (@everyone).",
|
|
usage="unhide [channel]",
|
|
aliases=["unhidechannel"])
|
|
@commands.has_permissions(manage_channels=True)
|
|
@commands.bot_has_permissions(manage_channels=True)
|
|
async def unhide_command(self, ctx, channel: discord.TextChannel = None):
|
|
"""Makes a channel visible to @everyone again."""
|
|
# If no channel is mentioned, use the current channel
|
|
channel = channel or ctx.channel
|
|
|
|
# Get the author's avatar URL
|
|
author_avatar_url = ctx.author.avatar.url if ctx.author.avatar else None
|
|
|
|
# Check if the channel is already visible
|
|
if channel.permissions_for(ctx.guild.default_role).read_messages:
|
|
embed = discord.Embed(
|
|
description=f"**{CHANNEL} Channel**: {channel.mention}\n{TICK} **Status**: Already Visible",
|
|
color=self.color
|
|
)
|
|
embed.set_author(name=f"{channel.name} is Already Visible")
|
|
if author_avatar_url:
|
|
embed.set_thumbnail(url=author_avatar_url)
|
|
await ctx.send(embed=embed)
|
|
return
|
|
|
|
# Unhide the channel by updating permissions
|
|
await channel.set_permissions(ctx.guild.default_role, read_messages=True)
|
|
|
|
# Create the success embed
|
|
embed = discord.Embed(
|
|
description=f"**{TICK} | {channel.mention} has been successfully unhidden.**",
|
|
color=self.color
|
|
)
|
|
embed.set_author(name="Channel Unhidden")
|
|
embed.set_footer(text=f"Action by {ctx.author.name}", icon_url=author_avatar_url)
|
|
if author_avatar_url:
|
|
embed.set_thumbnail(url=author_avatar_url)
|
|
|
|
await ctx.send(embed=embed)
|
|
|
|
# Function to add the cog to your bot
|
|
async def setup(bot):
|
|
await bot.add_cog(Unhide(bot))
|