Server Side way to get that stuff :
Name - variable - $Pref::Server::Name
Players - variable - $Server::Playercount
Max Players - variable - $Pref::Server::MaxPlayers
Passworded true/false - function
function checkPass()
{
if($Pref::Server::Password $= "")
{
return false;
}
else
{
return true;
}
}
[passworded y/n variable] = checkPass();