PHP code example of jester / q3tool
1. Go to this page and download the library: Download jester/q3tool library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jester / q3tool example snippets
// Using composer (https://packagist.org/packages/jester/q3tool)
CON
$tool = new q3tool("myclan.org");
// Non-default port, no RCON
$tool = new q3tool("myclan.org", 27961);
// Including RCON
$tool = new q3tool("myclan.org", 27960, "super1337password");
// Get a list of players as an array
$players = $tool->get_info("playerlist");
// Or just how many players are on
$player_num = $tool->get_info("players");
// Sending an RCON command
$response = $tool->send_rcon('bigtext "Hello all!"');