Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Die Änderung betrifft den sendChallenge Befehl der geht nicht mehr so ohne Weiteres. Das selbe dürfte glaube ich auch auf die Source Engine zutreffen.[...]aber irgendwie gab es ne Änderung der Schnittstelle und seit dem hatte ich keine neue Doku mehr dazu gefunden
function rcon_command($command, $rcon_pw)
{
if (!$this->_connect()) return false;
if (!$this->_writeData("challenge rcon")) return false;
if (!$this->_readData()) return false;
$this->_getInt32();
$challenge_string = $this->_getString();
$string_parts = explode(" ",$challenge_string);
$rcon_challenge = trim($string_parts[2]);
if (!$this->_writeData("rcon ".$rcon_challenge." \"".$rcon_pw."\" ".$command)) return false;
if (!$this->_readData()) return false;
$this->_getInt32();
$this->_getByte();
if (!$this->_disconnect()) return false;
return $this->_data;
}