Related to FEATURE REQUEST - Add ability to bulk update Crew On/Off which has been added in BETA, I would like to add an additional/optional argument crewDelta that can be added to allow for faster completion.
For example, if I had a company with 80 aircraft in the fleet and then went and purchased 40 more, today I would simply:
Start-Process -FilePath "msfs2024-career-maintenance.ahk" -ArgumentList "-numOfAircraft", "120", "-crewToggle", "On"
... to enable Crew=On for all aircraft in the fleet.
But if I added a crewDelta option the command could be like:
Start-Process -FilePath "msfs2024-career-maintenance.ahk" -ArgumentList "-numOfAircraft", "120", "-crewToggle", "On", "-crewDelta", "40"
...and that would be able to stop once 40 aircraft have toggled to Crew=On, instead of continuing to go through all 120 for no reason (since it's already completed).
I just experienced this myself and see it could save significant time depending on how the newly purchased aircraft are dispersed throughout the fleet.
I will look to add this as an optional argument for a quality-of-life update.
Related to FEATURE REQUEST - Add ability to bulk update Crew On/Off which has been added in BETA, I would like to add an additional/optional argument
crewDeltathat can be added to allow for faster completion.For example, if I had a company with 80 aircraft in the fleet and then went and purchased 40 more, today I would simply:
Start-Process -FilePath "msfs2024-career-maintenance.ahk" -ArgumentList "-numOfAircraft", "120", "-crewToggle", "On"... to enable Crew=On for all aircraft in the fleet.
But if I added a
crewDeltaoption the command could be like:Start-Process -FilePath "msfs2024-career-maintenance.ahk" -ArgumentList "-numOfAircraft", "120", "-crewToggle", "On", "-crewDelta", "40"...and that would be able to stop once 40 aircraft have toggled to Crew=On, instead of continuing to go through all 120 for no reason (since it's already completed).
I just experienced this myself and see it could save significant time depending on how the newly purchased aircraft are dispersed throughout the fleet.
I will look to add this as an optional argument for a quality-of-life update.