Results 1 to 15 of 17
-
05-01-2010, 17:57 #1
-= TeamSpeak User =-
- Join Date
- Jan 2010
- Location
- Germany
- Posts
- 9
[Suggestion] Move the clients instead of a channel with D&G
English:
I hope this has not been posted before..
After you have created the channel-structure it's pretty useless to move channels.
It would be clever if there is an option to move all clients via drag and drop to another channel instead of moving the channel AND all clients in them.
Maybe by pressing CTRL while moving.
greeting Worfox
*** German part deleted ***Last edited by dante696; 06-01-2010 at 21:38. Reason: English only
-
05-01-2010, 20:27 #2
great! like that
-
05-01-2010, 20:59 #3
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Switzerland
- Posts
- 444
This would prevent people from moving channels by accident but then they would move all people in there. I am not sure what is better
Perhaps it should be possible to disable the mouse channel move at all?
-
06-01-2010, 20:07 #4
-= TeamSpeak Addict =-
- Join Date
- Oct 2008
- Location
- Alberta, Canada
- Posts
- 167
The channel move via D&D is a nice convenience, but I would LOVE to be able to move all users from a channel to another. Either a CTRL drag to move the channel, or just putting the 'parent channel' as an option in the Edit Channel dialog should be sufficient.
-
06-01-2010, 21:39 #5
-= TeamSpeak Team =-
- Join Date
- Jun 2008
- Posts
- 7,762
I like this request, will discuss with some people about it.
-
07-01-2010, 11:41 #6
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 5
great! like that
-
07-01-2010, 12:23 #7
-= TeamSpeak Addict =-
- Join Date
- Jul 2008
- Location
- Germany
- Posts
- 139
Nice Idea, would be great when there will be an option 4 moving multiple Users from some channels like I can move in any fileexplorer different Files by holding CTRL while i click on them and drag them where i want to. Would make TS3 more intuitively.
Channel 1
Player 1
Player 2
- Subchannel 1.1
Player 3
Player 4
Channel 2
Player 5
- Subchannel 2.1
Player 6
Player 7
Channel 3
Now I hold CTRL klick on Player 2, Player 4 and Player 7 and drag them in Channel 3. Moving all Clients of a Channel at a time would a good thing too, maybe via the Context-Menu of the Channel "Move all players to > Channellist" or something.
-
07-01-2010, 14:26 #8
-= TeamSpeak Addict =-
- Join Date
- Oct 2008
- Location
- Alberta, Canada
- Posts
- 167
Or, grab the Channel 2.1 to Channel 1 and Players 6 and 7 are moved to channel 1. Convenience. CTRL/SHIFT click would be nice, but I'd like to see the move channel feature altered so it's not so easy to do it by accident.
-
07-01-2010, 15:06 #9
-= TeamSpeak Team =-
- Join Date
- Jun 2008
- Posts
- 7,762
Devs plan to implement multiselect first. But this has low priority atm.
-
08-01-2010, 08:50 #10
-= TeamSpeak Addict =-
- Join Date
- Jul 2008
- Location
- Germany
- Posts
- 139
-
08-01-2010, 14:04 #11
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 66
Just write a script for that. I wrote a Lua script that does that, so I can simply type /lua run move 4 to move all users from my channel to channel #4, or I type /lua run move 4 2 to move all users from channel 2 to channel 4.
Similar to that a lot things are possible via scripting; all I'm looking for is that you could make shorter commands (or listen to chat input via lua; I hope this comes with the plugin updates in the next client) without having to write a plugin (which would be overkill).
You can enable logging changes to channels in the serverinstance settings, that way you see who moves them.
-
09-01-2010, 21:47 #12
-= TeamSpeak Fanatic =-
- Join Date
- Jan 2010
- Location
- Secret Base in Arctic Region
- Posts
- 1,186
-
10-01-2010, 11:30 #13
[Suggestions] Multi User select + handle with it
It would be nice, if we can select multiple users so we can:
- switch them to another channel
- kick / ban
- mute
- add/remove to/from contact
... and so on ...
Thanks
-
10-01-2010, 17:47 #14
-= TeamSpeak Fanatic =-
- Join Date
- Jan 2010
- Location
- Secret Base in Arctic Region
- Posts
- 1,186
Just look here -> http://forum.teamspeak.com/showthread.php?t=49250 for multiple select and move.
-
11-01-2010, 19:37 #15
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 66
Sure, just copy this to the custom.lua file in the scripts folder, and reload the Lua plugin:
Then you can simply use the command by entering it into the chat window:Code:function move ( serverConnectionHandlerId, channelTo, channelFrom ) local error, clientList if channelFrom == nil then local clientId, error = ts3.getClientID( serverConnectionHandlerId ) if error ~= ts3errors.ERROR_ok then print( 'move: Error getting client ID: ' .. error ) return end channelFrom, error = ts3.getChannelOfClient( serverConnectionHandlerId, clientId ) if error ~= ts3errors.ERROR_ok then print( 'move: Error getting channel ID: ' .. error ) return end end clientList, error = ts3.getChannelClientList( serverConnectionHandlerId, channelFrom ) if error ~= ts3errors.ERROR_ok then print( 'move: Error getting clients in channel: ' .. error ) return end for i, clientId in ipairs( clientList ) do error = ts3.requestClientMove( serverConnectionHandlerId, clientId, channelTo, '' ) if error ~= ts3errors.ERROR_ok then print( 'move: Error moving client ' .. tostring( clientId ) .. ': ' .. error ) end end end
Code:/lua run move <to> <-- to move from current channel to <to> /lua run move <to> <from> <-- to move from <from> to <to> Examples: /lua run move 2 5 /lua run move 3
Last edited by PatrickW; 11-01-2010 at 19:39. Reason: spaces vs. tabs; tabs won.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
3 Suggestions
By BetaAlien in forum Suggestions and FeedbackReplies: 9Last Post: 05-01-2010, 14:05 -
No Sound
By tank464 in forum [TeamSpeak 2] Client SupportReplies: 20Last Post: 18-11-2009, 19:16 -
dos attack i think
By sklipnoty in forum [TeamSpeak 2] Server SupportReplies: 2Last Post: 29-08-2007, 23:19 -
Timeout nach 30 Sekunden
By NNNChef in forum [TeamSpeak 2] Client SupportReplies: 0Last Post: 09-01-2006, 21:05 -
Constant timeouts and disconnections
By SniperBait in forum [TeamSpeak 2] Client SupportReplies: 8Last Post: 10-05-2005, 22:07


Reply With Quote


