mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
Took out prefix example
Apparently reading is hard
This commit is contained in:
parent
b0a017c34e
commit
a2e79e1c5a
12
red.py
12
red.py
@ -43,14 +43,14 @@ async def on_ready():
|
|||||||
if not "uptime" in dir(bot): #prevents reset in case of reconnection
|
if not "uptime" in dir(bot): #prevents reset in case of reconnection
|
||||||
bot.uptime = int(time.perf_counter())
|
bot.uptime = int(time.perf_counter())
|
||||||
print('------')
|
print('------')
|
||||||
print(bot.user.name + " is now online.")
|
print("{} is now online.".format(bot.user.name))
|
||||||
print('------')
|
print('------')
|
||||||
print("Connected to:")
|
print("Connected to:")
|
||||||
print(servers + " servers")
|
print("{} servers".format(servers))
|
||||||
print(channels + " channels")
|
print("{} channels".format(channels))
|
||||||
print(users + " users")
|
print("{} users".format(users))
|
||||||
print("\n{0} active cogs with {1} commands\n".format(
|
print("\n{0} active cogs with {1} commands\n".format(
|
||||||
str(len(bot.cogs)), str(len(bot.commands))))
|
len(bot.cogs), len(bot.commands)))
|
||||||
if settings.login_type == "token":
|
if settings.login_type == "token":
|
||||||
print("------")
|
print("------")
|
||||||
print("Use this url to bring your bot to a server:")
|
print("Use this url to bring your bot to a server:")
|
||||||
@ -173,7 +173,7 @@ def check_configs():
|
|||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
print("\nChoose a prefix. A prefix is what you type before a command.\n"
|
print("\nChoose a prefix. A prefix is what you type before a command.\n"
|
||||||
"A typical prefix would be the exclamation mark. Example: !help\n"
|
"A typical prefix would be the exclamation mark.\n"
|
||||||
"Can be multiple characters. You will be able to change it "
|
"Can be multiple characters. You will be able to change it "
|
||||||
"later and add more of them.\nChoose your prefix:")
|
"later and add more of them.\nChoose your prefix:")
|
||||||
confirmation = False
|
confirmation = False
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user