mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-18 14:12:57 +03:00
Add Nightstalker EVR storms
Includes manual on/off for APSI and localized strings.
This commit is contained in:
@@ -4,6 +4,15 @@ class ItemAPSI_DZE : ItemCore
|
||||
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
|
||||
|
||||
@@ -951,4 +951,87 @@ class RscTitles
|
||||
text="\nst\textures\skrabanec.paa";
|
||||
};
|
||||
};
|
||||
class RscAPSI
|
||||
{
|
||||
idd = -1;
|
||||
duration = 10;
|
||||
fadein = 0;
|
||||
movingEnable = 0;
|
||||
enableSimulation = 0;
|
||||
enableDisplay = 0;
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_ACTIVITY;
|
||||
ColorText[] = {1,0.2,0.1,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_Detected: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_DETECT;
|
||||
ColorText[] = {1,0,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_Protected: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_PROTECT;
|
||||
ColorText[] = {0,1,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_On: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_ENABLED;
|
||||
ColorText[] = {0,1,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_Off: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_DISABLED;
|
||||
ColorText[] = {0,1,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_Start: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_START;
|
||||
ColorText[] = {1,0,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
class RscAPSI_End: RscAPSI
|
||||
{
|
||||
class controls
|
||||
{
|
||||
class APSILog: RscTextAPSI
|
||||
{
|
||||
text = $STR_EVR_END;
|
||||
ColorText[] = {0,1,0.2,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -792,6 +792,20 @@ class bloodTest
|
||||
};
|
||||
};
|
||||
|
||||
class RscTextAPSI : RscText
|
||||
{
|
||||
x = 0.5;
|
||||
y = 1;
|
||||
h = 0.03;
|
||||
w = 0.5;
|
||||
style = 2;
|
||||
font = "BitStream";
|
||||
SizeEx = 0.025;
|
||||
colorText[] = {0.1,0.1,0.1,1};
|
||||
colorBackground[] = {0.5,0.5,0.5,0.4};
|
||||
lineSpacing = 1;
|
||||
};
|
||||
|
||||
#include "RscDisplay\includes.hpp"
|
||||
|
||||
//Override BIS Loadscreen
|
||||
|
||||
Reference in New Issue
Block a user