Simple Maintenance Bot
- The Bot Is About Simple Script Kick All From Script With Reason ' Maintenance '
- You Can edit the reason
- Do Not forget to change ( query ) (username and password )
- The Bot Is About Simple Script Kick All From Script With Reason ' Maintenance '
- You Can edit the reason
- Do Not forget to change ( query ) (username and password )
PHP:
<?php>
// Simple Maintenance Bot By CrusheRz
// framwork files
require_once("libraries/TeamSpeak3/TeamSpeak3.php");
// connect to the server [ do not forget to put your username(serveradmin) + password
$ts3_VirtualServer = TeamSpeak3::factory("serverquery://username:[email protected]:10011/?server_port=9987");
// query clientlist from virtual server
$arr_ClientList = $ts3_VirtualServer->clientList();
// Kick All Clients
$ts3_VirtualServer->clientKick($arr_ClientList, TeamSpeak3::KICK_SERVER, "maintenance");
?>