Game Strategy / Re: Brokerage System
« on: September 24, 2009, 05:50:28 pm »Thanks for your help.
/* * 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; } } } } }
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1) Using your slots twice? Does that mean if I have 1 gate = 10slots, I can create 20 routes?
No, there's a maximum of ten flights/frequencies to 10 slots.2) Can I create another focus city near to my starting base and create routes to my existing destinations? I'm asking this because I want to maximize the usage of the existing gates, which all have 9 slots left.
Yes, thats a very wise decision.
Youre In A Good Situation and you have a good DOC for such a small fleet.
Maybe you should wait untill your ATR Arrives and have an increase in your DOC Because it costs a little. Starting a focus city close to your hub is a good idea because you can use all your slots twice which will make you quite wealthy. Always Start Domestic then international.