General Chat / Re: working
« on: September 10, 2008, 02:13:05 pm »You get paid to play this.....i m not a machine, and it dont affect my working quality
/* * 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.
You get paid to play this.....i m not a machine, and it dont affect my working quality
Quote from: "smartmo"i suggest that admin can cancel 0.5 frequently and create a rule that prevent
any airline's occupied rate over than 30% in one place. i think it is a efficient method to stop airlines to monopolize the city.
That rate of occupancy is foolishly low....
At the very beginning of a round, when you are the first into a city. You automatically have a 100% market share. Noone would be able to open even their first route.
Second circumstance when that doesn't work. You pick a city to hub where there is a low amount of traffic. You could in theory end up with a market share above 60% quite easily. Some airlines prefer to pick one city and put a ton of traffic out of it rather than shotgunning two or three cities at the beginning.