I'm searching for a good MMORPG 4 Linux and I saw this game. I really want to try it out but the server is down

The screenshots are looking very promising

Code: Select all
function check_server_status ($server_adress, $server_port)
{
$server_connection = fsockopen ($server_adress,$server_port);
if ($server_connection == TRUE)
{
$server_status = "online";
}
else
{
$server_status = "offline";
}
return $server_status;
}
if (check_server_status ("loginserver.homeunix.test",8947) == "online")
{
print "Login Server online!";
}
//...
I think in the dev stage it could be a great idea because if a server is down you can choose another one, but when we'll have official releases I think it would be better to have only one server so everyone can play together! Anyway it won't be hard to add a screen to select the server just give me your server address and I'll work something outkrismichael wrote:Hey Elven,
Do you think we should setup a few mirror servers? I've got a dedicated server we could use for hosting a DEV server. But of course we will then need to setup a way for the client to select which server, etc.