Files
Config-Extraction-Tools/testConfig.Altis/airConfig.sqf
Ghostrider-DbD- ab91208d71 Consolidated Tools into 4 Scripts
Added definitions of common headers.
Broke common functions into a separately compiled list of functions.
Reduced the toolbox to 4 tools.
Removed useless code and comments.
Added notifications that the scripts had successfully run.
2017-08-04 21:27:34 -04:00

19 lines
411 B
Plaintext

_airBase = [];
#include "airBase.sqf"
_veh = (configfile >> "CfgVehicles") call BIS_fnc_getCfgSubClasses;
_veh sort true;
systemChat format[" _veh contains %1 entries",count _veh];
_index = 0;
_aircraft = [];
_clipboard = "";
{
if ( (_x isKindOf "Air") && !(_x in _airBase) ) then
{
//_air pushback _x;
_clipboard = _clipboard + format['"%1",%2',_x,endl];
};
}forEach _veh;
copyToClipboard _clipboard;