wie geht das ?? finde nix dazu ...
channel id herausfinden ?
-
-
sind die 3 stellig ?? wenn ja hab ichs
-
Hallo,
wenn du im TS3 Client auf einen Channel klickst und mit der Maus einfach über dem Namen rechts in der Beschreibung bleibst, erscheint da folgender Text:QuoteChannel Reihenfolge: 279
Die Zahl entspricht deiner Channel ID. Diesedie Zahl kann beliebig viele Stellen haben.
Du kannst dir mit dem ServerQuery per Befehl eine Liste aller Channels des Servers anzeigen lassen und darin dann die "Channel ID" ("cid" genannt) herausfiltern:
Für mehr Infos zum Thema ServerQuery siehe auch unsere FAQ: TeamSpeak 3 ServerQuery Benutzung -
-
Sorry, vergiss das mit der Channel Reihenfolge.
Kennst du das Tool "YaTQA"? Damit kannst du die Channel ID herauslesen. Wenn du dich auf deinen Server verbunden hast, gehst du einfach wie folgt vor:
- Menü "Server" auswählen
- Entsprechend benötigten virtuellen Server auswählen (Doppelklick darauf)
- Menü "Benutzer" auswählen
- Channel anklicken
Nun werden dir rechts die Eigenschaften des Channels angezeigt. Unter anderem auch die Channel ID.
-
ich für meinen teil meine das mein weg am einfachsten ist
es muss dabei eine datei bearbeitet werden um die CID direkt am Channel anzeigen zu lassen
1. TeamSpeak Installationspfad öffnen
2. den ordner "styles" im Hauptverzeichnis der Installation auswählenhier sind dann standardmäßig falls keine zusätzlichen Skins installiert wurden die ordner "bluesky", "classic", "default" und "modern"
da ich ein Gewohnheits Tier bin habe ich es immer noch nicht hingebracht auf das neue "modern" Design zu wechseln und nutze für meine Zwecke immer noch den Skin "default"
also öffne ich den ordner "default" und editier die darin befindliche Datei Namens "channelinfo_de.tpl" (wenn Deutsch als Sprache im TeamSpeak Client verwendet wird)dann kannst du ganz einfach den kompletten Inhalt überschreiben mit folgendem Text:
beachte dabei dass dein TeamSpeak Client geschlossen sein muss um die Datei speichern zu könnenCode- <!--TeamSpeak 3 Channel Infoframe Template (DE) Copyright 2009-2015 (c) TeamSpeak Systems GmbH The replaceable variables are embedded in "%%" like %%CHANNEL_NAME%%. At this time you can also use %%?CHANNEL_NAME%% (note the questionmark), which is a tiny "if"- query. Use it, to remove the whole line, if a variable is empty or just "0".Templates can be placed in "styles/" for default theme or in a sub folder named like an available theme (e.g. "styles/bluesky/"). Be aware that this template will not automaticly be translated when displayed.Predefined values have to be inside the html comment-tag to make sure that they will be parsedbefore the replacing begins! Remove the "#" to enable.#%%IMAGES_MAX_WIDTH%%256#%%IMAGES_MAX_HEIGHT%%256Replacable variables for channels:CHANNEL_NAMECHANNEL_IDCHANNEL_TOPICCHANNEL_MAXCLIENTSCHANNEL_MAXFAMILYCLIENTSCHANNEL_NEEDED_TALK_POWERCHANNEL_ORDERCHANNEL_CODECCHANNEL_CODEC_BITRATECHANNEL_FLAGSCHANNEL_SUBSCRIPTIONCHANNEL_CLIENTS_COUNTCHANNEL_VOICE_DATA_ENCRYPTEDCHANNEL_VOICE_DATA_ENCRYPTED_FLAGCHANNEL_DESCRIPTIONCHANNEL_ICONPLUGIN_INFO_DATAIMAGES_MAX_WIDTHTEMP_CHANNEL_DELETE_DELAYTEMP_CHANNEL_TIME_TO_DELETE--><style type="text/css"> table#info { border-collapse: collapse; border-spacing: 0px; } table#list { border-collapse: collapse; border-spacing: 0px; margin-bottom: 10px; } td { padding: 0px 4px 0px 1px; } td.label { font-weight: bold; white-space: nowrap; } td.space { padding-top: 10px; } td.list { padding: 4px 1px 0px 8px; } .blue { color: blue; } .red { color: red; }</style><table id="info"> <tr title="Channel Reihenfolge: %%CHANNEL_ORDER%%"> <td class="label">Name:</td> <td><a class="TextMessage_ChannelLink" href="channelid://%%CHANNEL_ID%%">%%CHANNEL_NAME%%</a></td> </tr> <tr><td class="label">Thema:</td><td>%%?CHANNEL_TOPIC%%</td></tr> <tr> <td class="label">Codec:</td> <td>%%CHANNEL_CODEC%%</td> </tr> <tr> <td class="label">Codec Qualität:</td> <td>%%CHANNEL_CODEC_QUALITY%% (geschätzte Bitrate: %%CHANNEL_CODEC_BITRATE%%/s)</td> </tr> <tr><td class="label">Typ:</td><td class="blue">%%?CHANNEL_FLAGS%%</td></tr> <tr><td class="label">Aktuelle Clients:</td><td>%%?CHANNEL_CLIENTS_COUNT%% / %%CHANNEL_FLAG_MAXCLIENTS%%</td></tr> <tr><td class="label">Benötigte Talk Power:</td><td class="red"><img src="iconpath:MODERATED?size=16x16" height="12" width="12" alt="" title="Fordere Talk Power an um in diesem Channel zu sprechen." /> %%?CHANNEL_NEEDED_TALK_POWER%%</td></tr> <tr> <td class="label">Abonnement Status:</td> <td>%%CHANNEL_SUBSCRIPTION%%</td> </tr> <tr> <td class="label">CID</td> <td>%%CHANNEL_ID%%</td> </tr> <tr><td class="label">Voice Verschlüsselung:</td><td>%%CHANNEL_VOICE_DATA_ENCRYPTED%%</td></tr> %%?PLUGIN_INFO_DATA%%</table><p style="margin-top: 4px; color:darkRed;">Channel wird gelöscht in %%?TEMP_CHANNEL_TIME_TO_DELETE%%.</p><table id="list" width=100%> <tr><td class="space label"><img src="iconpath:CHANGE_NICKNAME?size=16x16" height="12" width="12" alt=""> Beschreibung:</td></tr><tr><td class="list"><br />%%?CHANNEL_DESCRIPTION%%</td></tr></table>
Das sieht dann so aus:
Ebenfalls habe ich noch ein Template um mehr über die Clients anzeigen zu lassen:
Code- <!--
- TeamSpeak 3 Channel Infoframe Template (DE)
- Copyright 2009-2015 (c) TeamSpeak Systems GmbH
- The replaceable variables are embedded in "%%" like %%CHANNEL_NAME%%. At this time you can also use
- %%?CHANNEL_NAME%% (note the questionmark), which is a tiny "if"- query. Use it, to remove the whole
- line, if a variable is empty or just "0".
- Templates can be placed in "styles/" for default theme or in a sub folder named like an available
- theme (e.g. "styles/bluesky/"). Be aware that this template will not automaticly be translated when
- displayed.
- Predefined values have to be inside the html comment-tag to make sure that they will be parsed
- before the replacing begins! Remove the "#" to enable.
- #%%IMAGES_MAX_WIDTH%%256
- #%%IMAGES_MAX_HEIGHT%%256
- Replacable variables for channels:
- CHANNEL_NAME
- CHANNEL_ID
- CHANNEL_TOPIC
- CHANNEL_MAXCLIENTS
- CHANNEL_MAXFAMILYCLIENTS
- CHANNEL_NEEDED_TALK_POWER
- CHANNEL_ORDER
- CHANNEL_CODEC
- CHANNEL_CODEC_BITRATE
- CHANNEL_FLAGS
- CHANNEL_SUBSCRIPTION
- CHANNEL_CLIENTS_COUNT
- CHANNEL_VOICE_DATA_ENCRYPTED
- CHANNEL_VOICE_DATA_ENCRYPTED_FLAG
- CHANNEL_DESCRIPTION
- CHANNEL_ICON
- PLUGIN_INFO_DATA
- IMAGES_MAX_WIDTH
- TEMP_CHANNEL_DELETE_DELAY
- TEMP_CHANNEL_TIME_TO_DELETE
- -->
- <style type="text/css">
- table#info {
- border-collapse: collapse;
- border-spacing: 0px;
- }
- table#list {
- border-collapse: collapse;
- border-spacing: 0px;
- margin-bottom: 10px;
- }
- td {
- padding: 0px 4px 0px 1px;
- }
- td.label {
- font-weight: bold;
- white-space: nowrap;
- }
- td.space {
- padding-top: 10px;
- }
- td.list {
- padding: 4px 1px 0px 8px;
- }
- .blue {
- color: blue;
- }
- .red {
- color: red;
- }
- </style>
- <table id="info">
- <tr title="Channel Reihenfolge: %%CHANNEL_ORDER%%">
- <td class="label">Name:</td>
- <td><a class="TextMessage_ChannelLink" href="channelid://%%CHANNEL_ID%%">%%CHANNEL_NAME%%</a></td>
- </tr>
- <tr><td class="label">Thema:</td><td>%%?CHANNEL_TOPIC%%</td></tr>
- <tr>
- <td class="label">Codec:</td>
- <td>%%CHANNEL_CODEC%%</td>
- </tr>
- <tr>
- <td class="label">Codec Qualität:</td>
- <td>%%CHANNEL_CODEC_QUALITY%% (geschätzte Bitrate: %%CHANNEL_CODEC_BITRATE%%/s)</td>
- </tr>
- <tr><td class="label">Typ:</td><td class="blue">%%?CHANNEL_FLAGS%%</td></tr>
- <tr><td class="label">Aktuelle Clients:</td><td>%%?CHANNEL_CLIENTS_COUNT%% / %%CHANNEL_FLAG_MAXCLIENTS%%</td></tr>
- <tr><td class="label">Benötigte Talk Power:</td><td class="red"><img src="iconpath:MODERATED?size=16x16" height="12" width="12" alt="" title="Fordere Talk Power an um in diesem Channel zu sprechen." /> %%?CHANNEL_NEEDED_TALK_POWER%%</td></tr>
- <tr>
- <td class="label">Abonnement Status:</td>
- <td>%%CHANNEL_SUBSCRIPTION%%</td>
- </tr>
- <tr>
- <td class="label">CID</td>
- <td>%%CHANNEL_ID%%</td>
- </tr>
- <tr><td class="label">Voice Verschlüsselung:</td><td>%%CHANNEL_VOICE_DATA_ENCRYPTED%%</td></tr>
- %%?PLUGIN_INFO_DATA%%
- </table>
- <p style="margin-top: 4px; color:darkRed;">Channel wird gelöscht in %%?TEMP_CHANNEL_TIME_TO_DELETE%%.</p>
- <table id="list" width=100%>
- <tr><td class="space label"><img src="iconpath:CHANGE_NICKNAME?size=16x16" height="12" width="12" alt=""> Beschreibung:</td></tr><tr><td class="list"><br />%%?CHANNEL_DESCRIPTION%%</td></tr>
- </table>
das sieht dann so aus: