Merge branch 'development' into development

This commit is contained in:
Dusty.P 2018-06-14 00:01:10 -08:00 committed by GitHub
commit 573dad92c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 17 deletions

View File

@ -27,13 +27,13 @@ This bot extends the rewrite version of discord.py. A couple of variables have b
Make sure this one is installed. Example: Make sure this one is installed. Example:
```py ```py
if self.bot.mainenance: if self.bot.maintenance:
print('I am in the development branch') print('I am in the development branch')
if not self.bot.mainenance: if not self.bot.maintenance:
print('I am in the master branch') print('I am in the master branch')
``` ```
In other words. `self.mainenance` returns `False` in production and `True` in developer modes. In other words. `self.maintenance` returns `False` in production and `True` in developer modes.
> `self.bot.embed_color` > `self.bot.embed_color`

View File

@ -37,26 +37,27 @@ class BasicCommands:
else: else:
if msg.content.lower() in agree: if msg.content.lower() in agree:
async with ctx.typing(): async with ctx.typing():
await ctx.send("Alrighty-Roo...") await ctx.send("Alrighty-Roo... Check your DMs!")
await ctx.author.send("Alrighty-Roo...")
await ctx.send(f"To start making your bot from scratch, you first need to head over to {channel_list['channel-1']}" await ctx.author.send(f"To start making your bot from scratch, you first need to head over to {channel_list['channel-1']}"
" (Regardless of the language you're gonna use).") " (Regardless of the language you're gonna use).")
await asyncio.sleep(0.5) await asyncio.sleep(0.5)
await ctx.send(f"After you have a bot account, you can either continue with {channel_list['d.py-rewrite-start']}" await ctx.author.send(f"After you have a bot account, you can either continue with {channel_list['d.py-rewrite-start']}"
f"if you want to make a bot in discord.py rewrite __or__ go to {channel_list['js-klasa-start']} or " f"if you want to make a bot in discord.py rewrite __or__ go to {channel_list['js-klasa-start']} or "
f"{channel_list['d.js']} for making a bot in JavaScript.") f"{channel_list['d.js']} for making a bot in JavaScript.")
await ctx.send("...Read all the tutorials and still need help? You have two ways to get help.") await ctx.author.send("...Read all the tutorials and still need help? You have two ways to get help.")
await asyncio.sleep(1.5) await asyncio.sleep(1.5)
await ctx.send("**Method-1**\nThis is the best method of getting help. You help yourself.\n" await ctx.author.send("**Method-1**\nThis is the best method of getting help. You help yourself.\n"
f"To do so, head over to a bots dedicated channel (either {bots_channels[0]} or {bots_channels[1]})" f"To do so, head over to a bots dedicated channel (either {bots_channels[0]} or {bots_channels[1]})"
" and type `?rtfm rewrite thing_you_want_help_with`.\nThis will trigger the bot R.Danny Bot and will" " and type `?rtfm rewrite thing_you_want_help_with`.\nThis will trigger the bot R.Danny Bot and will"
"give you links on your query on the official discord.py rewrite docs. *PS: Let the page completely load*") "give you links on your query on the official discord.py rewrite docs. *PS: Let the page completely load*")
await asyncio.sleep(5) await asyncio.sleep(5)
await ctx.send("**Method-2**\nIf you haven't found anything useful with Method-1, feel free to ask your question " await ctx.author.send("**Method-2**\nIf you haven't found anything useful with Method-1, feel free to ask your question "
f"in any of the related help channels. ({', '.join(help_channels)})\nMay the force be with you!!") f"in any of the related help channels. ({', '.join(help_channels)})\nMay the force be with you!!")
else: else:
return await ctx.send("Session terminated. You can run this command again whenever you want.") return await ctx.send("Session terminated. You can run this command again whenever you want.")