/* * 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; } } } } }
Flight Frequencies
What is the most profitable frequency?
That is a bit of a trick question. Almost always, putting another flight on the same route (multifrequency) will make you more profit on that route. However, this is often only by a small amount. You can usually make more profit by doing two flights to different cities rather than two flights to one city. For example, you might make $50,000 on a 1x flight or $65,000 on a 2x flight. If you were to do a 1x and another 1x, you could make $100,000. This logic can be extended to 0.5x flights, which will make more money per hour than 1x frequency flights.
You can make more money on a specific route (pair of cities) by flying higher frequencies, but you can make more profit with the aircraft by flying less frequencies (considering that more frequencies uses up more time).
See this post about flight frequencies in the FAQ, it answers your question neatly :)Flight FrequenciesSo in essence this game uses unrealistic frequency data.
What is the most profitable frequency?
That is a bit of a trick question. Almost always, putting another flight on the same route (multifrequency) will make you more profit on that route. However, this is often only by a small amount. You can usually make more profit by doing two flights to different cities rather than two flights to one city. For example, you might make $50,000 on a 1x flight or $65,000 on a 2x flight. If you were to do a 1x and another 1x, you could make $100,000. This logic can be extended to 0.5x flights, which will make more money per hour than 1x frequency flights.
You can make more money on a specific route (pair of cities) by flying higher frequencies, but you can make more profit with the aircraft by flying less frequencies (considering that more frequencies uses up more time).