untested follow example
This commit is contained in:
parent
49e3de14a5
commit
78f82d64e5
24
myTS3.py
24
myTS3.py
|
@ -389,7 +389,7 @@ class TSbot:
|
||||||
.annoy target message
|
.annoy target message
|
||||||
.btc / .eth
|
.btc / .eth
|
||||||
.dot / .ada
|
.dot / .ada
|
||||||
.follow
|
.follow target
|
||||||
.info clid
|
.info clid
|
||||||
.kickall message
|
.kickall message
|
||||||
.list channel/clients
|
.list channel/clients
|
||||||
|
@ -435,8 +435,26 @@ class TSbot:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
elif command == ".follow":
|
elif command == ".follow":
|
||||||
# self.bot.clientmove(clid=self.myid,cid=129)
|
if not parameter[0]:
|
||||||
pass # TODO get channel id (cid) of parameter 1 client
|
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":
|
elif command == ".info":
|
||||||
# TODO implement more then just the runtime
|
# TODO implement more then just the runtime
|
||||||
|
|
Loading…
Reference in New Issue