I search a plugin for joining channels with command.
I image something like "/joinchannel [id] [passwort]"
I have searched a lot but I couldnīt find anything.
We are migrating towards a new forum system located at community.teamspeak.com, as such this forum will become read-only on January 29, 2020
I search a plugin for joining channels with command.
I image something like "/joinchannel [id] [passwort]"
I have searched a lot but I couldnīt find anything.
could use the clientquery plugin, afair it should be capable of switching you into a specific channel.
Only difference is you'd be entering the command in telnet instead of the client. But since you could easily switch channels by double click if using the client, or even hotkeys there doesn't seem to be much sense in it, unless you want to script it, in which case the client query plugin makes more sense as it's more easily scriptable.
When sending PMs please make sure to include a reference link to the thread in question in the body of your message.
LUA:
https://github.com/Bluscream/channel...eleases/latest would be what you needCode:function joinchannel(sCHID, id, pw) local ownID = ts3.getClientID(sCHID) local cName = ts3.getChannelVariableAsString(sCHID, id, ts3defs.ChannelProperties.CHANNEL_NAME) if pw then ScriptLog("Trying to join channel "..cName.." with password ""..pw.."".") ts3.requestClientMove(sCHID, ownID, id, pw) else ScriptLog("Trying to join channel "..cName..".") ts3.requestClientMove(sCHID, ownID, id, channelJOIN.setting.defaultPW) end end![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)