mirror of
https://github.com/acemod/ACE3.git
synced 2025-07-25 21:02:48 +00:00
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
/*
|
|
* Author: Alganthe
|
|
* Export current loadout / default loadouts list to clipboard.
|
|
*
|
|
* Arguments:
|
|
* 0: Arsenal display <DISPLAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_display"];
|
|
|
|
if (GVAR(shiftState)) then {
|
|
|
|
if (isNil QGVAR(defaultLoadoutsList) || {GVAR(defaultLoadoutsList) isEqualTo []}) exitWIth {
|
|
[_display, "Default loadouts list is empty"] call FUNC(message); //TBL
|
|
};
|
|
|
|
private _listLength = count GVAR(defaultLoadoutsList);
|
|
for "_index" from -1 to _listLength do {
|
|
|
|
switch true do {
|
|
case (_index == -1): {
|
|
"ace_clipboard" callExtension (format ["[%1", endl]);
|
|
};
|
|
|
|
case (_index == _listLength): {
|
|
"ace_clipboard" callExtension "];";
|
|
};
|
|
|
|
default {
|
|
"ace_clipboard" callExtension ([" ",str (GVAR(defaultLoadoutsList) select _index), [",", ""] select (_index == _listLength - 1), endl] joinString "");
|
|
};
|
|
};
|
|
};
|
|
|
|
"ace_clipboard" callExtension "--COMPLETE--";
|
|
|
|
[_display, "Default loadouts list exported to clipboard"] call FUNC(message); //TBL
|
|
} else {
|
|
|
|
private _export = str getUnitLoadout GVAR(center);
|
|
"ace_clipboard" callExtension (_export + ";");
|
|
"ace_clipboard" callExtension "--COMPLETE--";
|
|
|
|
[_display, "Current loadout exported to clipboard"] call FUNC(message); //TBL
|
|
};
|