Advertisement
SmooKy

Untitled

Jan 8th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. @client.command(pass_context=True, aliases=['h', 'commands', 'cmds'])
  2. async def help(ctx):
  3. channel = ctx.message.channel
  4. embed = discord.Embed(
  5. colour = discord.Colour.blue()
  6. )
  7.  
  8. embed.set_footer(text='If you need further assistance, feel free to ask any question in the support channel!')
  9. embed.set_author(name='Available commands for Smookbot')
  10. embed.add_field(name='<:peepo:663028358153764864> **Balance Check** <:peepo:663028358153764864>', value='.balance | .bal | .b', inline=False)
  11. embed.add_field(name='<:Gold:663103541824585759> **Payday Information** <:Gold:663103541824585759>', value='.payout | .payday | .pd | .po | .p', inline=False)
  12. embed.add_field(name='<:jewdanna:663028357541396502> **Balance Gamble** <:jewdanna:663028357541396502>', value='.balancegamble | .bgamble | .bg', inline=False)
  13.  
  14. await ctx.send(embed=embed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement