Added clientpoke command

This commit is contained in:
2011-06-07 09:47:19 +01:00
parent b203a1c220
commit c0003d03be

View File

@@ -382,3 +382,11 @@ class TS3Server(TS3Proto):
return response.is_successful
return False
def clientpoke(self, clid, message):
"""
Poke a client with the specified message
"""
response = self.send_command('clientpoke', keys={'clid': clid, 'msg': message})
return response.is_successful