Bugs / Re: Boeing 707-320 Block Time Calculations
« on: August 22, 2020, 06:21:38 am »Thanks!
/* * 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.
He would be answering his own e-mail as he is the creator of Airline Mogul
Or 2 mil for some of us, I really picked the wrong base compared to everyone else.
Planned (with tokens).
Can't happen as that would make it really easy for players to cheat by creating more than one account and use ghost accounts to feed the main account.
Alternatively, we could consider the PW owner giving out aircrafts, for a fee (tokens). We will discuss it in our next staff meeting.
Pros: players get to choose
Cons: the majority of our players don't read (unfortunately).... and therefore don't know what they have chosen. We would still get complaints.
As I have said before in the suggestion sub-forum, it is quite easy to come up with suggestions and alternatives. The issue though is whether those suggestions and alternatives are viable. Nothing is as simple as it seem on the surface. That is the same with this game. There are tons of considerations behind each and every suggestions. Nonetheless, I do appreciate your effort in being constructive.