/* * Patch for filter_var() */ if(!function_exists('filter_var')){ define('FILTER_VALIDATE_IP', 'ip'); define('FILTER_FLAG_IPV4', 'ipv4'); define('FILTER_FLAG_IPV6', 'ipv6'); define('FILTER_VALIDATE_EMAIL', 'email'); define('FILTER_FLAG_EMAIL_UNICODE', 'unicode'); function filter_var($variable, $filter, $option = false){ if($filter == 'ip'){ if($option == 'ipv4'){ if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } if($option == 'ipv6'){ if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } if($filter == 'email'){ if($option == 'unicode' || $option == false){ if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } } }
1) If you are in a public world, what happens when that world is over? Do you lose any aircraft that you have acquired along the way? What about gates that you may have purchased while in that world?The game just remains in a frozen state. You can however go in, order aircraft, buy or lease aircraft off the market, open routes etc, however no updates take place and you wont have a chance to get any more income.
2) If you are able to keep your aircraft, is there any sense in leasing an aircraft that has, lets say, a 120 month lease if your current world only has 5 years left? Will you still be able to use that aircraft in whichever world you transfer to?Personally, I'd like to build in an auto-limiter so that if as you say there are 5 years left the maximum lease length would be 60 months. There is no problem leasing a 120 month aircraft however as we do not as yet have any early lease termination fees. You are not able to transfer aircraft to other worlds, each world operates independently.