Get connected clients

Adryyy

New Member
Joined
Mar 18, 2017
Messages
1
Reaction score
0
Points
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
Joined
Jun 9, 2016
Messages
277
Reaction score
111
Points
107
PHP:
<?php
    
    foreach($ts3->clientList(array('client_type' => 0)) as $ts3_list){

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

    }
    

?>
 
Top