Does any one know how I can make it so that multiple people can fly the same route at the same time, with the same aircraft?
In local.config.php change
# If someone places a bid, whether to disable that or not
Config::Set('DISABLE_SCHED_ON_BID', true);
Config::Set('DISABLE_BIDS_ON_BID', true);
to
# If someone places a bid, whether to disable that or not
Config::Set('DISABLE_SCHED_ON_BID', false);
Config::Set('DISABLE_BIDS_ON_BID', false);
In local.config.php change
If someone places a bid, whether to disable that or not
Config::Set(‘DISABLE_SCHED_ON_BID’, true);
Config::Set(‘DISABLE_BIDS_ON_BID’, true);to
If someone places a bid, whether to disable that or not
Config::Set(‘DISABLE_SCHED_ON_BID’, false);
Config::Set(‘DISABLE_BIDS_ON_BID’, false);
Thanks, simpilot. I thought it would be that simple just didn’t know which php file to start at