mirror of
https://github.com/Ghostrider-DbD-/Config-Extraction-Tools.git
synced 2025-07-25 19:02:10 +00:00
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.
19 lines
411 B
Plaintext
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;
|