Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Tools/APSI.hpp
worldwidesorrow 3bb6b94185 Add Nightstalker EVR storms
Includes manual on/off for APSI and localized strings.
2022-04-21 02:00:25 -05:00

24 lines
488 B
C++

class ItemAPSI_DZE : ItemCore
{
scope = 2;
displayName = $STR_EQUIP_APSI;
picture = "\dayz_epoch_c\icons\tools\ItemAPSI.paa";
descriptionShort = $STR_EQUIP_APSI_DESC;
class ItemActions
{
class Power
{
text = $STR_APSI_STATE;
script = "call fnc_apsiState;";
};
};
};
class ItemAPSIBroken_DZE : ItemCore
{
scope = 2;
displayName = $STR_EQUIP_APSI_BROKEN;
descriptionShort = $STR_EQUIP_APSI_BROKEN_DESC;
picture = "\dayz_epoch_c\icons\tools\ItemAPSIBroken.paa";
};