General Chat / Re: GCM Question
« on: November 15, 2014, 11:00:33 am »When I say "they" I am of course just extending my own opinions onto others
/* * 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.
I don't know how difficult it would be to do with the code, would it be possible to change the rout limiting system from 5-25 total alliance flights at one base to say, 5-10 flights per airline? So that way, each airline has a chance to operate from an alliance base and one airline can't control all of the alliance routes. That seems to be a problem especially when small airlines join large alliances late in the game, there are usually few open alliance route possibilities. This would also prevent airlines from spamming alliance bases.I like this idea, if it could be done. I think use of alliance bases should really be to enable you to reach new destinations through 1-stop services, or maximise utilisation of your aircraft when it can't be done from your own bases. Limiting the number of flights to 'per airline' gives everyone in the alliance the chance to make use of each others' hubs for this purpose, and makes the alliance more attractive to join for newer members even when it is already quite large. Plus it deals with the spamming.