Selaa lähdekoodia

More responses

root 3 vuotta sitten
vanhempi
sitoutus
a22b931055
2 muutettua tiedostoa jossa 9 lisäystä ja 3 poistoa
  1. 9 2
      bot/events/general.py
  2. 0 1
      bot/main.py

+ 9 - 2
bot/events/general.py

@@ -62,8 +62,8 @@ class General(commands.Cog):
 
 		# Respond when mentioned
 		if self.bot.user.mentioned_in(message):
-			print("mentioned in ")
-			print(message.channel)
+			#print("mentioned in ")
+			#print(message.channel)
 			#interact = get_interact()
 			#print(interact)
 			#if interact:
@@ -89,6 +89,13 @@ class General(commands.Cog):
 					"Go touch grass!",
 					"Do you think i care about you?",
 					f"Stop pinging me {message.author.mention}!",
+					f"Let me ping you back, {message.author.mention}..."
+					"Sure thing.",
+					"Who is your favorite bot?",
+					"Point me to the humans!",
+					"Where is the party?",
+					"Want to go?",
+					f"{message.author.mention} Party time! :partying_face:",
 				]
 				await message.reply(random.choice(messages))
 

+ 0 - 1
bot/main.py

@@ -17,7 +17,6 @@ def missing_config():
 		logging.info("Copying local_settings_example.py to local_settings.py")
 		try:
 			os.system("cp local_settings_example.py local_settings.py")
-			#os.rename("local_settings_example.py", "local_settings.py")
 		except FileNotFoundError:
 			logging.info("local_settings_example.py not found, creating local_settings.py")
 			with open("local_settings.py", "w") as settings_file: