Forum


Notice to all users

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

Results 1 to 3 of 3
  1. #1
    Join Date
    February 2016
    Posts
    3

    [Request] Channeljoin plugin

    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.

  2. #2
    Join Date
    September 2012
    Posts
    6,079
    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.

  3. #3
    Join Date
    August 2013
    Location
    Germany
    Posts
    541
    LUA:
    Code:
    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
    https://github.com/Bluscream/channel...eleases/latest would be what you need

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Request] Plugin That Allows Users To Request Songs and Spotify to Queue Them
    By loganweaver15 in forum Client Plugins / Lua Scripts
    Replies: 4
    Last Post: March 7th, 2014, 02:57 PM
  2. plugin request
    By BaldingEagle in forum Client Plugins / Lua Scripts
    Replies: 2
    Last Post: May 8th, 2012, 07:08 AM
  3. [Request] DJ Plugin
    By Yavin in forum Tools / Web Based
    Replies: 5
    Last Post: January 21st, 2012, 08:34 AM
  4. [request] Admin Plugin
    By astraz in forum Client Plugins / Lua Scripts
    Replies: 2
    Last Post: July 26th, 2010, 07:34 AM
  5. Plugin request
    By Modmasta in forum Client Plugins / Lua Scripts
    Replies: 0
    Last Post: May 18th, 2010, 08:06 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •