mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-24 21:31:28 +00:00
14 lines
301 B
HTML
14 lines
301 B
HTML
<?
|
|
print "{";
|
|
if($EQW->LSConnected()) {
|
|
print "\"connected\" : \"1\",";
|
|
} else {
|
|
print "\"connected\" : \"0\",";
|
|
}
|
|
if($EQW->GetConfig("Locked") eq "true") {
|
|
print "\"locked\" : \"1\"";
|
|
} else {
|
|
print "\"locked\" : \"0\"";
|
|
}
|
|
print "}";
|
|
?> |