Channel Control

xCHeF

Member
Sep 13, 2016
42
1
43
Name of the script: Channel Control bot
Functions of the script: Edit the name , password , topic , limit in the web panel
Why do you want it: to use it in my ts3 panel
Screenshots:
Original source (if any):
Other notes:
 

kalle

high minded
Contributor
Oct 28, 2015
411
253
178
What is 'your' panel? Is is public or private. How the heck we should know.
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
// Some Information

// You can get the user channel id using
$clientcid= $ts3->clientGetByDbid(clientid)["cid"];
// You can update the channel name using :
$channel=$ts3->channelGetById($clientcid);
$channel["channel_name"]="New channel";
// I don't test the code, but it should work!
 
Top