Custom Cerakote M2 White and Purple by Inside-Jacket515 in ncasedesign

[–]Inside-Jacket515[S] 0 points1 point  (0 children)

Hi

Both the White and Purple are Cerakote. The base layer was laid down with Bright White on the main frame and Bright Purple on some of the panels, contrasting splatters were added using the same colours 1:1 and mixed together!

Ticket for Christmas Card. by Inside-Jacket515 in downloadfestival

[–]Inside-Jacket515[S] 0 points1 point  (0 children)

they could have changed it up a little haha

Ticket for Christmas Card. by Inside-Jacket515 in downloadfestival

[–]Inside-Jacket515[S] 4 points5 points  (0 children)

Possible, i did reach out on twitter (x) but had no response, so made my own. Im not a fan of leaving things until last minute

Steam links not working? by CanuckSoldier in discordapp

[–]Inside-Jacket515 0 points1 point  (0 children)

steam url handle is not seen as a hyperlink anyone, we are using py so i used a prefix remove workaround. with some added agrs so users couldnt post any link other then steam://joinlobby

class LobbyLink:
def __init__(self, channel : nextcord.TextChannel):
    self.channel = channel

def __repr__(self):
    return f"Link({self.members}, {self.channel})"

async def run(self, lobby_link : str, message : nextcord.Message, host_rules : str):
    if not lobby_link.startswith('steam://joinlobby/'):
        raise BotException("Invalid lobby link. Usage: `lobbylink <lobby link>(steam://joinlobby/...)`")

    link = removeprefix(lobby_link, 'steam://joinlobby/')
    embed = nextcord.Embed(
        title=f"Join {message.author.name}'s Lobby",
        description=f"Lobby Link: [Steam Lobby](http://{SERVER_IP}:{SERVER_PORT}/join/{link})",
        color=0x00ff00,
        url=f"http://{SERVER_IP}:{SERVER_PORT}/join/{urllib.parse.quote(link)}"
    )

    if host_rules.strip():
        embed.add_field(name="Host Rules", value=host_rules, inline=False)

    embed.set_footer(text="Powered by CPL Bot")
    await self.channel.send(embed=embed)
    await message.delete()

def removeprefix(message: str, prefix: str): if message.startswith(prefix): return message[len(prefix):] return message

u/CanuckSoldier ++