So I am looking into making a plugin for teamspeak that would allow you to type in chat (most likely using /r) to reply to a poke. But I cant find any info on how to deal with pokes in the documentation.
Printable View
So I am looking into making a plugin for teamspeak that would allow you to type in chat (most likely using /r) to reply to a poke. But I cant find any info on how to deal with pokes in the documentation.
There is ts3plugin_onClientPokeEvent, which will be called when you are getting poked. You'd need to grab the client info of who poked you to be able to reply.
To use /r you'd need to have your ts3plugin_commandKeyword function return "r" and then whenever you send something that starts with /r in chat your ts3plugin_processCommand function will be called with the text in the command parameter.
Ok, and this will all be done in lua?