-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp_command.py
More file actions
21 lines (17 loc) · 1.89 KB
/
Copy pathhelp_command.py
File metadata and controls
21 lines (17 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
async def help(discord,client,ctx):
embed = discord.Embed(
title="[🏆] SFPD Assistant",
description = """These are the features of SFPD Assistan Bot, if you have problems(bugs) or have any suggestions ,Please let me know using \n `!suggestions <your_Message>` \t \t \t
》
》""",
color = discord.Color.random(),
)
embed.add_field(name="[🕵️♂️] Players Commands",value="**`!id <RPG_player_name>`** - _To get the current status of a player _ ",inline=False)
embed.add_field(name="[🎯] Faction Commands",value=" **`!factions`** - _To get the Factions list and it's status_ \n**`!sverify`** - _To sync your Discord ID with your RPG Account_ \n**`!forum`** - _To get the link of all important forum topics_",inline=False)
embed.add_field(name="[👮♂️] Staff Commands",value=" **`!Helpers`** _To get the current status of a STAFFS _ \n**`!leaders`** _To get the current status of a leaders_",inline=False)
embed.add_field(name="[🎈] Utilities Commands",value="**`!pfp <@mention>`** _To view the members profile pic_ \n**`!stats`** - _To get info about bot\'s system_\n**`!updates`** - _To get info about bot\'s new updates_\n**`#imgur-area`** - _Drop your pics and get shareable image link_",inline=False)
embed.add_field(name="[💖] B-zone Supports",value="[Vist RPG Site](https://www.rpg.b-zone.ro/) | [Forum](https://forum.b-zone.ro/) | [Discord](https://discord.gg/qtXwDC2H) | [Contact](https://discord.gg/fKDbRTuTpe) ",inline=False)
embed.set_image(url="https://cdn.discordapp.com/attachments/961691415400820776/993049804793974914/ezgif.com-gif-maker_4.gif")
embed.set_thumbnail(url=client.user.display_avatar)
embed.set_footer(text="use `!help` to know more |use !suggestions to share your ideas",icon_url="https://cdn.discordapp.com/avatars/491251010656927746/6f81dc8d0bc07ff152b244e0958b5961.png?size=1024")
await ctx.respond(embed=embed)