diff --git a/myTS3.py b/myTS3.py index be9e710..843ec6b 100644 --- a/myTS3.py +++ b/myTS3.py @@ -389,7 +389,7 @@ class TSbot: .annoy target message .btc / .eth .dot / .ada - .follow + .follow target .info clid .kickall message .list channel/clients @@ -435,8 +435,26 @@ class TSbot: pass elif command == ".follow": - # self.bot.clientmove(clid=self.myid,cid=129) - pass # TODO get channel id (cid) of parameter 1 client + if not parameter[0]: + err = "Please use the command like this: .follow TARGET" + self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err) + return + + target = parameter[0] + try: + clients = self.bot.clientfind(pattern=target) + clids = [client["clid"] for client in clients] + if len(clids) == 1: + cid = self.bot.clientinfo(clids[0])["cid"] + self.bot.clientmove(clid=self.myid, cid=cid) + else: + self.pipeOut(f"Found multiple matching clients using pattern {target}:{clids}") + return + + except ts3.query.TS3QueryError as e: + self.pipeOut(f"No client found using pattern {target}," + f"returned error:\n{e}", lvl="ERROR") + return elif command == ".info": # TODO implement more then just the runtime