|
|
|
Language: |
> |
Font size: |
> |
Tooltips: |
> |
Theme: |
> |
Colour scheme: |
> |
|
|
Leave Game
if (is_null($args['quit']))
{
?>
Click the button bellow to leave this game. Please note that it will not close your account; it will simply quit the current game. You will have 24 hours after you click the button to cancel your action; after that, your planets will be made neutral, your fleets will be destroyed, your private messages erased, etc...
You will still be able to access the other games you're playing, and you'll be able to start playing any other game from the Account page.
name='quit' value='Leave =$args['name']?>' />
} else {
echo "You have decided to leave {$args['name']}. Your player information will be destroyed in ";
$tl = 86400 + $args['quit'] - time();
$h = ($tl - $tl % 3600) / 3600;
if ($h > 0)
echo "$h hour" . ($h>1 ? 's' : '');
$tl -= $h * 3600;
$m = ($tl - $tl % 60) / 60;
if ($m > 0)
echo ($h != 0 ? ' and ' : '') . "$m minute" . ($m>1 ? 's' : '');
$tl -= $m * 60;
?>
unless you decide to cancel this action by clicking the button below.
value='Do NOT leave =$args['name']?>' />
}
}
?>
|