Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hello message on guild join #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions SwagLyricsBot/swaglyrics_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from SwagLyricsBot.general_commands import GeneralCommands
from SwagLyricsBot.links_commands import LinksCommands
from SwagLyricsBot.topGG import TopGG
import discord

bot = commands.Bot(command_prefix=when_mentioned_or("$"), help_command=None)

Expand All @@ -29,6 +30,15 @@ async def on_ready():
await bot.change_presence(activity=Activity(type=ActivityType.watching, name="you type $sl"))


@bot.event
async def on_guild_join(guild):
channel = guild.system_channel
embed = discord.Embed(
title="Hello!",
description="""Hello, Thanks for adding SwagLyrics. Type `$help` to check all the commands you can use.""")
await channel.send(embed=embed)


async def run():
"""
Bot setup
Expand Down