1. Hello guys!

    How do I set RCON password? My server runs on Linux.
    I usage this GitHub - xPaw/PHP-Source-Query: PHP library to query servers that implement Source Engine Query protocol library.
    It requires a password RCON.


    Code:
    $Query = new SourceQuery( );try
    {
        $Query->Connect( SQ_SERVER_ADDR, SQ_SERVER_PORT, SQ_TIMEOUT, SQ_ENGINE );    $Query->SetRconPassword('');    var_dump( $Query->Rcon( 'command' ) );
    }
    catch( Exception $e )
    {
        echo $e->getMessage( );
    }
    finally
    {
        $Query->Disconnect( );
    }
    Please help :(
     
  2. Wulf

    Wulf Community Admin

    Hurtworld does not to have RCON last I saw.
     
  3. From source : "
    The class also allows you to query servers using RCON although this only works for half-life 1 and source engine games."

    You can check out websites like these : www.hurtworld-servers.net if you want something like pinging etc.
     
  4. Wulf

    Wulf Community Admin

    Those sites are using Steam Query, not RCON. Steam Query is open and does not use RCON passwords. Keep in mind that Source Query is not the same thing, Hurtworld is not a Source Engine game.