/* * 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; } } } } }
Turn-time is not yet added to the speed nor range :roll: . A turn is made when the aircraft goes to the gates.
Hello. I found out today --through experience-- that the Starliner's true range (within the context of the game) is significantly shorter than the advertised 7194. Actually, it's a (semi-obvious) feature of the plane's speed, but the farthest it can go in 24 hours is 6776 miles ({24-0.39 turn time}*287).
Quote from: "moondog"Hello. I found out today --through experience-- that the Starliner's true range (within the context of the game) is significantly shorter than the advertised 7194. Actually, it's a (semi-obvious) feature of the plane's speed, but the farthest it can go in 24 hours is 6776 miles ({24-0.39 turn time}*287).
Hmm... I'll have a word with Balint and see if we can't get an "Effective Range" column in the buy/req pages [which would be the formula as you illustrated]. Maybe someday we can break out of 24 hour caps like real airlines, but unfortunately for now we're kinda stuck with them as we have no real effective manner of otherwise appropriating it by day.