📄Updated help files
This commit is contained in:
@ -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 "):
|
||||
|
Reference in New Issue
Block a user