Updating some stuff in the help funtion

This commit is contained in:
Luke Robles 2021-11-11 19:51:28 -08:00
parent 352515ee96
commit ec7673e4bf

View File

@ -3,14 +3,14 @@ def get_help_message(method):
"""
get_help_message(method)
Returns the information and usage of each of dragon bot's funtions.
When adding a new feature to dragon bot, please add some information about
Returns the information and usage of each of dale bot's funtions.
When adding a new feature to dale bot, please add some information about
it here
"""
supported_methods = {
'8ball': [
'Ask dragon bot a question and it will give you an 8ball response',
'Ask dale bot a question and it will give you an 8ball response',
'\nUsage: !8ball Will I win the lottery tomorrow?'
],
'ask': [
@ -62,7 +62,7 @@ def get_help_message(method):
'Usage: !wasted https://some.photo.jpg'
],
'cleanup': [
'Admin use only. Deletes dragon bot\'s messages from the channel',
'Admin use only. Deletes dale bot\'s messages from the channel',
'Usage: !cleanup'
],
'corona': [
@ -70,7 +70,7 @@ def get_help_message(method):
'Usage: !corona <some US state>\neg: !corona Colorado'
],
'decide': [
'Dragon-bot will help make the tough decisions for you',
'dale-bot will help make the tough decisions for you',
' If there is only one option, it will give you a yes or no',
'\nUsage: !decide cake or pie\n!decide should I do my homework'
],
@ -136,7 +136,7 @@ def get_help_message(method):
' with your own number. \nUsage: !purge or !purge 15'
],
'roles': [
'Dragon bot will PM you a message with all the roles you have on the server'
'dale bot will PM you a message with all the roles you have on the server'
],
'wallpaper': [
'Returns the URL for a 4k wallpaper. You can enter',
@ -145,7 +145,7 @@ def get_help_message(method):
],
'message': [
'You can ask me a question directly and I will do my best to answer it.',
'\nUsage: @dragon-bot what is the capital of France?'
'\nUsage: @dale-bot what is the capital of France?'
],
'meme': [
'Generates a meme on the fly!',
@ -179,14 +179,14 @@ def get_help_message(method):
'Returns the URL for smug anime girl'
],
'source': [
"Links you to the git repo with dragon-bot's source code"
"Links you to the git repo with dale-bot's source code"
],
'stock': [
'Returns basic stock information for the stock you entered.',
'\nUsage: !stock AAPL TSLA'
],
'trackdays': [
'Returns the track schedule for the tracks we frequent (buttonwillow, laguna, sonoma, thunderhill).\n',
'Returns the track schedule for the tracks we frequent (buttonwillow and thunderhill).\n',
# 'Use abbreviations to reference the tracks, as follows\n',
# 'bw = Buttonwillow Raceway\n',
# 'willow = Willow Springs\n',
@ -240,7 +240,7 @@ def get_help_embed(bot):
description2 = "**Use `!help <Command>` for more information about a command.** \n\n" + \
"**Examples:** \n `!help dog` for detailed help for the dog command \n\n" + \
"**Useful links:** [My source code](http://git.luker.gq/ldooks/dragon-bot), [Donate](http://luker.gq/donate) \n\n" + \
"**Useful links:** [My source code](https://git.luker.gq/ldooks/dale-bot), [Donate](https://cash.me/$ldooks) \n\n" + \
"**Invite me to another server:** [Click here](https://discord.com/oauth2/authorize?client_id=%s&scope=bot&permissions=8)" % bot.user.id
embed.add_field(name="\u200b", value=description2, inline=False)