Get connected clients

Adryyy

New Member
Mar 18, 2017
1
0
13
Name of the script: ---
Functions of the script: show all connecteds clients
Why do you want it: to use with lgsl
Screenshots: ---
Original source (if any): ---
Other notes: ---
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
PHP:
<?php
    
    foreach($ts3->clientList(array('client_type' => 0)) as $ts3_list){

        echo htmlspecialchars($ts3_list["client_nickname"]);

    }
    

?>
 
Top