Skip to content

Commit

Permalink
Added prefix in help
Browse files Browse the repository at this point in the history
  • Loading branch information
1Prototype1 committed Oct 4, 2020
1 parent 73e5b0c commit c9e6115
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hexbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ async def help(ctx, arg: str=''):

if arg.strip().lower() == '-a':
# Full version
embed.description = 'My prefix is `~`'
embed.add_field(name=":musical_note: Music Commands:", value="```equalizer - Use equalizer\nlyrics <song> - Get lyrics of the song\nnow|np - Displays now playing song\npause|resume - Pause/Resume current song\nplay|p <song> - Plays specified song\nqueue|q - Displays current queue\nremove <idx> - Remove song from queue\nrepeat - Enable/Disable repeat\nresume - Resumes the paused song\nseek - Seek current track\nsave|star - Save song to your DM\nshuffle - Enable/Disable shuffle\nskip - Skips current song\nstop|dis - Stops and disconnects bot\nvolume <val> - Changes the volume[1-1000]```", inline=False)
embed.add_field(name=":stuck_out_tongue_winking_eye: Fun Commands:", value="```ai - Start AI chat\nadvice - Get some advice\nascii <link> - Get ascii art of user/img\nbored|suggest - Suggestion for boredom\nfilter - Apply filters to image\nfortune|quote - Fortune Cookie!\n <category>[factoid|fortune|people]\ntextart - Generate text art\nuselessweb - Get an useless website\nwallpaper - Get wallpaper```", inline=False)
embed.add_field(name=":tools: Utility Commands:", value="```convert - Currency Converter\n <val><from><to>\nencode <txt> - Encode and style the text\nlist - Displays the list of\n voice connected users\npalette <hex> - Get color palette\npokedex - Get Pokémon info\nrhyme <word> - Get rhyming words\ntrace <ip> - Locate IP address\ntranslate - Translate the text\n <id><txt>\nserver <serv> - Get server info\nshorten|url - Shorten an URL\nuser @user - Get user info\nweather <loc> - Get weather of location\nwordinfo - Get word info```", inline=False)
Expand All @@ -109,7 +110,7 @@ async def help(ctx, arg: str=''):
embed.add_field(name=":gear: Misc Commands:", value="```clear|cls - Delete the messages\nhelp - Display this message\nping|latency - Pong!\nsupport - Contact Bot owner```", inline=False)
else:
# Short version
embed.description = 'Type `~help -a` for detailed help.'
embed.description = 'My prefix is `~`\nType `~help -a` for detailed help.'
embed.add_field(name=":musical_note: Music:", value="`equalizer`, `lyrics`, `now`, `pause`, `p`, `play`, `queue`, `remove`, `repeat`, `resume`, `seek`, `save`, `shuffle`, `skip`, `stop`, `volume`")
embed.add_field(name=":stuck_out_tongue_winking_eye: Fun:", value="`ai`, `advice`, `ascii`, `bored`, `filter`, `fortune`, `quote`, `textart`, `uselessweb`, `wallpaper`")
embed.add_field(name=":tools: Utility:", value="`convert`, `encode`, `list`, `palette`, `pokedex`, `rhyme`, `trace`, `translate`, `server`, `shorten`, `user`, `weather`, `wordinfo`")
Expand Down

0 comments on commit c9e6115

Please sign in to comment.