mirror of
https://github.com/Ghostrider-DbD-/Config-Extraction-Tools.git
synced 2024-08-30 16:42:11 +00:00
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;
|