-
Notifications
You must be signed in to change notification settings - Fork 91
/
help_cog.py
46 lines (40 loc) · 1.94 KB
/
help_cog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import discord
from discord.ext import commands
class help_cog(commands.Cog):
def __init__(self, bot):
self.bot = bot
self.help_message = ""
self.text_channel_list = []
self.set_message()
def set_message(self):
self.help_message = f"""
```
General commands:
{self.bot.command_prefix}help - displays all the available commands
{self.bot.command_prefix}q - displays the current music queue
{self.bot.command_prefix}p <keywords> - finds the song on youtube and plays it in your current channel. Will resume playing the current song if it was paused
{self.bot.command_prefix}skip - skips the current song being played
{self.bot.command_prefix}clear - Stops the music and clears the queue
{self.bot.command_prefix}stop - Disconnected the bot from the voice channel
{self.bot.command_prefix}pause - pauses the current song being played or resumes if already paused
{self.bot.command_prefix}resume - resumes playing the current song
{self.bot.command_prefix}prefix - change command prefix
{self.bot.command_prefix}remove - removes last song from the queue
```
"""
@commands.Cog.listener()
async def on_ready(self):
await self.bot.change_presence(activity=discord.Game(f"type {self.bot.command_prefix}help"))
@commands.command(name="help", help="Displays all the available commands")
async def help(self, ctx):
await ctx.send(self.help_message)
@commands.command(name="prefix", help="Change bot prefix")
async def prefix(self, ctx, *args):
self.bot.command_prefix = " ".join(args)
self.set_message()
await ctx.send(f"prefix set to **'{self.bot.command_prefix}'**")
await self.bot.change_presence(activity=discord.Game(f"type {self.bot.command_prefix}help"))
@commands.command(name="send_to_all", help="send a message to all members")
async def send_to_all(self, msg):
for text_channel in self.text_channel_list:
await text_channel.send(msg)