$username = $_POST["username"]; $password = $_POST["password"]; spl_autoload_register(function ($strClass) { require_once sprintf('Penguin/%s.php', $strClass); }); $objPenguin = new Penguin(); global $itemid; $objPenguin->addListener("jr", function ($packet) use($objPenguin) { $objPenguin->addItem($_POST["itemid"]); }); $objPenguin->addListener("ai", function ($packet) { echo "Successfully added item ", "\n"; die; }); $objPenguin->addListener("e", function ($packet) use($objPenguin) { die($objPenguin->arrErrors[$packet[3]]["Description"]); }); try { $objPenguin->login($username, $password); $objPenguin->joinServer('Sled'); } catch (ConnectionException $objException) { die; } $objPenguin->joinRoom(805); while (true) { $strData = $objPenguin->recv(); if (XTParser::IsValid($strData)) { // echo $strData, chr(10); } } }
$intRoom = $arrPacket[3]; if ($intRoom == -1) { echo 'Target is offline', chr(10), die; } $objPenguin->joinRoom($intRoom); }); $objPenguin->addListener('rp', function ($arrPacket) use($objPenguin, &$mixTarget) { $intPlayer = $arrPacket[3]; unset($objPenguin->arrRoom[$intPlayer]); if ($intPlayer == $mixTarget) { $objPenguin->findBuddy($mixTarget); } }); try { $objPenguin->login('Username', 'Password'); $objPenguin->joinServer('Sleet'); } catch (ConnectionException $objException) { die; } if (!is_numeric($mixTarget)) { $objPenguin->getPlayerByName($mixTarget); while (!is_numeric($mixTarget)) { $objPenguin->recv(); } } $objPenguin->findBuddy($mixTarget); while (true) { $strData = $objPenguin->recv(); if (XTParser::IsValid($strData)) { echo $strData, chr(10); }