2023-07-25 06:30:49 +00:00
|
|
|
class EGVAR(arsenal,actions) {
|
|
|
|
class ADDON {
|
|
|
|
displayName = CSTRING(DisplayName);
|
|
|
|
condition = QUOTE(_this call FUNC(hasGunbag));
|
2023-07-25 06:41:15 +00:00
|
|
|
scopeEditor = 0; // variables are reset between 3DEN and mission start
|
2023-07-25 06:30:49 +00:00
|
|
|
tabs[] = {0,5};
|
|
|
|
class status {
|
|
|
|
textStatement = QUOTE([_this select 0] call FUNC(weaponName));
|
|
|
|
};
|
|
|
|
class store {
|
|
|
|
label = CSTRING(ToGunbag);
|
|
|
|
condition = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(canInteract) == 0);
|
|
|
|
statement = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(toGunbagCallback));
|
|
|
|
};
|
|
|
|
class retrieve {
|
|
|
|
label = CSTRING(OffGunbag);
|
|
|
|
condition = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(canInteract) == 1);
|
|
|
|
statement = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(offGunbagCallback));
|
|
|
|
};
|
|
|
|
class swap {
|
|
|
|
label = CSTRING(SwapGunbag);
|
|
|
|
condition = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(canInteract) == 2);
|
|
|
|
statement = QUOTE([ARR_2(_this select 0,_this select 0)] call FUNC(swapGunbagCallback));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|