How to Make Not Connected Page

ARABHOST

Member
Joined
Jul 11, 2016
Messages
15
Reaction score
2
Points
38
One Of The Servers Have This Page In Their Panel

I'm Wondering if I Can Get The Script For Free

Example :
http://prntscr.com/bs52iv

IF You Have It I Will Be So Thank For Sharing it
 

EscuderoKevin

Well-Known Member
Joined
Jul 2, 2015
Messages
380
Reaction score
181
Points
130
Here:



PHP:
    $connect = "serverquery://".$USER_QUERY.":".$PASS_QUERY."@".$HOST_QUERY.":".$PORT_QUERY."/?server_port=".$SERVER_PORT."";
    $ts3 = TeamSpeak3::factory($connect);
    $ts3->execute("clientupdate", array("client_nickname" => $NICK_QUERY));
    $FLAG = false;
   
    foreach ($ts3->clientList(array('client_type' => '0', 'connection_client_ip' => getClientIp())) as $client) {
        $clientuid = $client->client_unique_identifier;
        $client_nickname = $client->client_nickname;
        $client_clid = $client->clid;
        $FLAG = true;
        break;
        // IF CONNECTED YOU CAN GET ALL VALUES FROM HIM. //
    }
    if (!$FLAG){
        // HERE ITS NOT CONECTED YOU CAN YOU ALL IN HERE!!! //
        header("refresh: 10; url = ./");
        die; 
    }
 

ARABHOST

Member
Joined
Jul 11, 2016
Messages
15
Reaction score
2
Points
38
change This Blow To that he have to press button to Join the server
PHP:
    if (!$FLAG){
        // HERE ITS NOT CONECTED YOU CAN YOU ALL IN HERE!!! //
        header("refresh: 10; url = ./");
        die;
    }
 

Umar

Member
Joined
Jun 18, 2016
Messages
65
Reaction score
8
Points
40
Here:



PHP:
    $connect = "serverquery://".$USER_QUERY.":".$PASS_QUERY."@".$HOST_QUERY.":".$PORT_QUERY."/?server_port=".$SERVER_PORT."";
    $ts3 = TeamSpeak3::factory($connect);
    $ts3->execute("clientupdate", array("client_nickname" => $NICK_QUERY));
    $FLAG = false;
 
    foreach ($ts3->clientList(array('client_type' => '0', 'connection_client_ip' => getClientIp())) as $client) {
        $clientuid = $client->client_unique_identifier;
        $client_nickname = $client->client_nickname;
        $client_clid = $client->clid;
        $FLAG = true;
        break;
        // IF CONNECTED YOU CAN GET ALL VALUES FROM HIM. //
    }
    if (!$FLAG){
        // HERE ITS NOT CONECTED YOU CAN YOU ALL IN HERE!!! //
        header("refresh: 10; url = ./");
        die;
    }
Thx for that
 
Last edited:

HisRoyal

Member
Joined
Sep 20, 2015
Messages
1
Reaction score
0
Points
33
the image is in our website riotarea why did you stolen the page We have ownership rights be careful
 
Top