f"Assistant Four Started as {self.four.name}" ) if config.STRING5: await self.five.start() try: await self.five.join_chat("TeamYM") await self.five.join_chat("TheYukki") await self.five.join_chat("YukkiSupport") except: pass assistants.append(5) try: await self.five.send_message( config.LOG_GROUP_ID, "Assistant Started" ) except: LOGGER(__name__).error( f"Assistant Account 5 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin! " ) sys.exit() get_me = await self.five.get_me() self.five.username = get_me.username self.five.id = get_me.id assistantids.append(get_me.id) if get_me.last_name: self.five.name = ( get_me.first_name + " " + get_me.last_name ) else: self.five.name = get_me.first_name LOGGER(__name__).info( f"Assistant Five Started as {self.five.name}" )