Teamspeak PHP Client Maxclient && MaxFamily Problem

Yousef

Active Member
Nov 16, 2017
36
9
83
Hello ,
When i try to edit channel to maxclient and maxfamily they be Unlimted and i want channel Limited

PHP:
try{$Ts3C->ChannelGetById(50)['channel_maxclients'] = 0;} catch (Exception $e) {}
try{$Ts3C->ChannelGetById(50)['channel_maxfamilyclients'] = 0;} catch (Exception $e) {}

Be As

2296

Sorry For My Bad English
 

Ondra3211

Contributor
May 5, 2018
65
37
71
PHP:
$channel->modify(array(
    "channel_flag_maxclients_unlimited" => false,
    "channel_maxclients" => 0
));
 
Top