📄Updated help files

This commit is contained in:
NikolajDanger
2020-07-27 18:56:09 +02:00
parent b971c0d522
commit 5c31877656
14 changed files with 29 additions and 13 deletions

View File

@ -262,7 +262,7 @@ async def on_message(message):
json.dump(data,f,indent=4)
funcs.logThis("Time's up for the trivia question in "+str(message.channel))
await message.channel.send("Time's up! The answer was \""+chr(correctAnswer)+") "+answers[correctAnswer-97]+"\". Anyone who answered that has gotten a point")
await message.channel.send("Time's up! The answer was \""+chr(correctAnswer)+") "+answers[correctAnswer-97]+"\". Anyone who answered that has gotten 1 GwendoBuck")
else:
await message.channel.send(question)
@ -278,11 +278,11 @@ async def on_message(message):
await message.channel.send("I didn't understand that")
#Checks your point balance
#Checks your GwendoBucks balance
elif message.content.lower().startswith("!balance"):
funcs.logThis(message.author.name+" ran \""+message.content+"\"")
response = funcs.checkBalance(message.author.name.lower())
await message.channel.send(message.author.name + " has " + str(response) + " points")
await message.channel.send(message.author.name + " has " + str(response) + " GwendoBucks")
#gives money to other player
elif message.content.lower().startswith("!give "):