mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Updated Displays
Disabled new gear system
This commit is contained in:
108
SQF/dayz_code/Configs/CfgPlayerStats/defines.hpp
Normal file
108
SQF/dayz_code/Configs/CfgPlayerStats/defines.hpp
Normal file
@@ -0,0 +1,108 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Defines
|
||||
/********************************************************************************************************************/
|
||||
|
||||
#define CT_STATIC 0
|
||||
#define CT_BUTTON 1
|
||||
#define CT_COMBO 4
|
||||
#define CT_STRUCTURED_TEXT 13
|
||||
|
||||
#define ST_LEFT 0x00
|
||||
#define ST_RIGHT 0x01
|
||||
#define ST_CENTER 0x02
|
||||
#define ST_PICTURE 0x30
|
||||
#define ST_ROUNDED1 128
|
||||
#define ST_MULTI 0x10
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Base Classes
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_RscPicture
|
||||
{
|
||||
access = 0;
|
||||
type = CT_STATIC;
|
||||
style = ST_PICTURE;
|
||||
idc = -1;
|
||||
colorBackground[] = {0,0,0,1};
|
||||
colorText[] = {1,1,1,1};
|
||||
font = "Zeppelin33";
|
||||
sizeEx = 0;
|
||||
lineSpacing = 0;
|
||||
text = "";
|
||||
fixedWidth = 0;
|
||||
shadow = 0;
|
||||
x = 0;
|
||||
y = 0;
|
||||
w = 0;
|
||||
h = 0;
|
||||
};
|
||||
|
||||
class horde_RscText
|
||||
{
|
||||
type = CT_STATIC;
|
||||
text = "";
|
||||
idc = -1;
|
||||
style = ST_CENTER;
|
||||
h = 0.04;
|
||||
colorBackground[] = {0, 0, 0, 0};
|
||||
colorText[] = {0, 0, 0, 1};
|
||||
font = "Zeppelin33";
|
||||
sizeEx = 0.01 * safezoneH;
|
||||
shadow = 0;
|
||||
};
|
||||
|
||||
class horde_RscStructuredText
|
||||
{
|
||||
access = 0;
|
||||
type = CT_STRUCTURED_TEXT;
|
||||
style = ST_CENTER;
|
||||
font = "Zeppelin33";
|
||||
idc = -1;
|
||||
colorBackground[] = {0,0,0,0};
|
||||
colorText[] = {0,0,0,0};
|
||||
x = 0;
|
||||
y = 0;
|
||||
h = 0;
|
||||
w = 0;
|
||||
text = "";
|
||||
size = 0.0146 * safezoneH;
|
||||
shadow = 0;
|
||||
};
|
||||
|
||||
class horde_RscButton
|
||||
{
|
||||
access = 0;
|
||||
type = CT_BUTTON;
|
||||
style = ST_LEFT;
|
||||
x = 0;
|
||||
y = 0;
|
||||
w = 0;
|
||||
h = 0;
|
||||
text = "";
|
||||
font = "Zeppelin33";
|
||||
sizeEx = 0.04;
|
||||
colorText[] = {0, 0, 0, 0};
|
||||
colorDisabled[] = {0, 0, 0, 0};
|
||||
colorBackground[] = {0, 0, 0, 0};
|
||||
colorBackgroundDisabled[] = {0, 0, 0, 0};
|
||||
colorBackgroundActive[] = {0, 0, 0, 0};
|
||||
offsetX = 0;
|
||||
offsetY = 0;
|
||||
offsetPressedX = 0;
|
||||
offsetPressedY = 0;
|
||||
colorFocused[] = {0, 0, 0, 0};
|
||||
colorShadow[] = {0, 0, 0, 0};
|
||||
shadow = 0;
|
||||
colorBorder[] = {0, 0, 0, 0};
|
||||
borderSize = 0;
|
||||
soundEnter[] = {"",0.1,1};
|
||||
soundPush[] = {"",0.1,1};
|
||||
soundClick[] = {"",0.1,1};
|
||||
soundEscape[] = {"",0.1,1};
|
||||
};
|
||||
99
SQF/dayz_code/Configs/CfgPlayerStats/p__cover.hpp
Normal file
99
SQF/dayz_code/Configs/CfgPlayerStats/p__cover.hpp
Normal file
@@ -0,0 +1,99 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_front_cover
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"open_craft",
|
||||
"open_book",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
// background
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\cover.paa";
|
||||
x = 0.199197 * safezoneW + safezoneX;
|
||||
y = -0.0250695 * safezoneH + safezoneY;
|
||||
w = 0.601605 * safezoneW;
|
||||
h = 1.05014 * safezoneH;
|
||||
|
||||
};
|
||||
|
||||
// buttons
|
||||
|
||||
class open_craft: RscIGUIShortcutButton {
|
||||
idc = -1;
|
||||
x = 0.48 * safezoneW + safezoneX;
|
||||
y = 0.8 * safezoneH + safezoneY;
|
||||
text = $STR_UI_CRAFT_OPEN;
|
||||
action = "closeDialog 0; createDialog 'RscDisplayCraftingMenu';";
|
||||
};
|
||||
|
||||
class open_book: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
text = "#(argb,8,8,3)color(1,1,1,0.5)";
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.149954 * safezoneH + safezoneY;
|
||||
w = 0.291687 * safezoneW;
|
||||
h = 0.68259 * safezoneH;
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_journal_humanity';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = -0.0195684 * safezoneW + safezoneX;
|
||||
y = -0.0600741 * safezoneH + safezoneY;
|
||||
w = 1.03914 * safezoneW;
|
||||
h = 0.210028 * safezoneH;
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = 0.791687 * safezoneW + safezoneX;
|
||||
y = 0.149954 * safezoneH + safezoneY;
|
||||
w = 1.04825 * safezoneW;
|
||||
h = 0.892618 * safezoneH;
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = -0.0013379 * safezoneW + safezoneX;
|
||||
y = 0.832544 * safezoneH + safezoneY;
|
||||
w = 1.04825 * safezoneW;
|
||||
h = 0.892618 * safezoneH;
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.110721 * safezoneW + safezoneX;
|
||||
y = 0.0624421 * safezoneH + safezoneY;
|
||||
w = 0.610721 * safezoneW;
|
||||
h = 0.822609 * safezoneH;
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
|
||||
458
SQF/dayz_code/Configs/CfgPlayerStats/p_bandits_killed.hpp
Normal file
458
SQF/dayz_code/Configs/CfgPlayerStats/p_bandits_killed.hpp
Normal file
@@ -0,0 +1,458 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_bandits
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [player getVariable['banditKills', 0]] call horde_epeen_setText_stats_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"header_one",
|
||||
"header_two",
|
||||
"main_image",
|
||||
"t11",
|
||||
"t12",
|
||||
"t13",
|
||||
"t14",
|
||||
"t15",
|
||||
"t21",
|
||||
"t22",
|
||||
"t23",
|
||||
"t24",
|
||||
"t25",
|
||||
"t31",
|
||||
"t32",
|
||||
"t33",
|
||||
"t34",
|
||||
"t35",
|
||||
"t41",
|
||||
"t42",
|
||||
"t43",
|
||||
"t44",
|
||||
"t45",
|
||||
"t51",
|
||||
"t52",
|
||||
"t53",
|
||||
"t54",
|
||||
"t55",
|
||||
"t61",
|
||||
"t62",
|
||||
"t63",
|
||||
"t64",
|
||||
"t65",
|
||||
"t75",
|
||||
"t71",
|
||||
"t72",
|
||||
"t73",
|
||||
"t74",
|
||||
"t75",
|
||||
"add_kills",
|
||||
"click_for_prev_page",
|
||||
"click_for_next_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
class header_one: horde_RscPicture
|
||||
{
|
||||
idc = 1700;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\bandit.paa";
|
||||
x = 0.253926 * safezoneW + safezoneX;
|
||||
y = 0.219948 * safezoneH + safezoneY;
|
||||
w = 0.200505 * safezoneW;
|
||||
h = 0.0700129 * safezoneH;
|
||||
};
|
||||
class header_two: horde_RscPicture
|
||||
{
|
||||
idc = 1701;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\killed.paa";
|
||||
x = 0.244842 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class main_image: horde_RscPicture
|
||||
{
|
||||
idc = 1702;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\illus\bandit.paa";
|
||||
x = 0.281293 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.173143 * safezoneW;
|
||||
h = 0.489934 * safezoneH;
|
||||
};
|
||||
class t11: horde_RscStructuredText
|
||||
{
|
||||
idc = 1204;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t12: horde_RscStructuredText
|
||||
{
|
||||
idc = 1205;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t13: horde_RscStructuredText
|
||||
{
|
||||
idc = 1206;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t14: horde_RscStructuredText
|
||||
{
|
||||
idc = 1207;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t15: horde_RscStructuredText
|
||||
{
|
||||
idc = 1208;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t21: horde_RscStructuredText
|
||||
{
|
||||
idc = 1209;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t22: horde_RscStructuredText
|
||||
{
|
||||
idc = 1210;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t23: horde_RscStructuredText
|
||||
{
|
||||
idc = 1211;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t24: horde_RscStructuredText
|
||||
{
|
||||
idc = 1212;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t25: horde_RscStructuredText
|
||||
{
|
||||
idc = 1213;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t31: horde_RscStructuredText
|
||||
{
|
||||
idc = 1214;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t32: horde_RscStructuredText
|
||||
{
|
||||
idc = 1215;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t33: horde_RscStructuredText
|
||||
{
|
||||
idc = 1216;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t34: horde_RscStructuredText
|
||||
{
|
||||
idc = 1217;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t35: horde_RscStructuredText
|
||||
{
|
||||
idc = 1218;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t41: horde_RscStructuredText
|
||||
{
|
||||
idc = 1219;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t42: horde_RscStructuredText
|
||||
{
|
||||
idc = 1220;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t43: horde_RscStructuredText
|
||||
{
|
||||
idc = 1221;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t44: horde_RscStructuredText
|
||||
{
|
||||
idc = 1222;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t45: horde_RscStructuredText
|
||||
{
|
||||
idc = 1223;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t51: horde_RscStructuredText
|
||||
{
|
||||
idc = 1224;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t52: horde_RscStructuredText
|
||||
{
|
||||
idc = 1225;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t53: horde_RscStructuredText
|
||||
{
|
||||
idc = 1226;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t54: horde_RscStructuredText
|
||||
{
|
||||
idc = 1227;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t55: horde_RscStructuredText
|
||||
{
|
||||
idc = 1228;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t61: horde_RscStructuredText
|
||||
{
|
||||
idc = 1229;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t62: horde_RscStructuredText
|
||||
{
|
||||
idc = 1230;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t63: horde_RscStructuredText
|
||||
{
|
||||
idc = 1231;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t64: horde_RscStructuredText
|
||||
{
|
||||
idc = 1232;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t65: horde_RscStructuredText
|
||||
{
|
||||
idc = 1233;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t71: horde_RscStructuredText
|
||||
{
|
||||
idc = 1234;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t72: horde_RscStructuredText
|
||||
{
|
||||
idc = 1235;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t73: horde_RscStructuredText
|
||||
{
|
||||
idc = 1236;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t74: horde_RscStructuredText
|
||||
{
|
||||
idc = 1237;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t75: horde_RscStructuredText
|
||||
{
|
||||
idc = 1238;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class add_kills: horde_RscStructuredText
|
||||
{
|
||||
idc = 1239;
|
||||
x = 0.536451 * safezoneW + safezoneX;
|
||||
y = 0.709972 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
|
||||
//********************************************************************************************************************/
|
||||
// Buttons
|
||||
//********************************************************************************************************************/
|
||||
|
||||
class click_for_prev_page: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_headshots';";
|
||||
};
|
||||
class click_for_next_page: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\page",0.7,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_murders';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1905;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
450
SQF/dayz_code/Configs/CfgPlayerStats/p_headshots.hpp
Normal file
450
SQF/dayz_code/Configs/CfgPlayerStats/p_headshots.hpp
Normal file
@@ -0,0 +1,450 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_headshots
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [player getVariable['headShots', 0]] call horde_epeen_setText_stats_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"header_one",
|
||||
"main_image",
|
||||
"t11",
|
||||
"t12",
|
||||
"t13",
|
||||
"t14",
|
||||
"t15",
|
||||
"t21",
|
||||
"t22",
|
||||
"t23",
|
||||
"t24",
|
||||
"t25",
|
||||
"t31",
|
||||
"t32",
|
||||
"t33",
|
||||
"t34",
|
||||
"t35",
|
||||
"t41",
|
||||
"t42",
|
||||
"t43",
|
||||
"t44",
|
||||
"t45",
|
||||
"t51",
|
||||
"t52",
|
||||
"t53",
|
||||
"t54",
|
||||
"t55",
|
||||
"t61",
|
||||
"t62",
|
||||
"t63",
|
||||
"t64",
|
||||
"t65",
|
||||
"t75",
|
||||
"t71",
|
||||
"t72",
|
||||
"t73",
|
||||
"t74",
|
||||
"t75",
|
||||
"add_kills",
|
||||
"click_for_prev_page",
|
||||
"click_for_next_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
// picture of blank book pages
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
class header_one: horde_RscPicture
|
||||
{
|
||||
idc = 1700;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\headshots.paa";
|
||||
x = 0.244842 * safezoneW + safezoneX;
|
||||
y = 0.237536 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class main_image: horde_RscPicture
|
||||
{
|
||||
idc = 1701;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\illus\headshots.paa";
|
||||
x = 0.208391 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.309835 * safezoneW;
|
||||
h = 0.507431 * safezoneH;
|
||||
};
|
||||
class t11: horde_RscStructuredText
|
||||
{
|
||||
idc = 1204;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t12: horde_RscStructuredText
|
||||
{
|
||||
idc = 1205;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t13: horde_RscStructuredText
|
||||
{
|
||||
idc = 1206;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t14: horde_RscStructuredText
|
||||
{
|
||||
idc = 1207;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t15: horde_RscStructuredText
|
||||
{
|
||||
idc = 1208;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t21: horde_RscStructuredText
|
||||
{
|
||||
idc = 1209;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t22: horde_RscStructuredText
|
||||
{
|
||||
idc = 1210;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t23: horde_RscStructuredText
|
||||
{
|
||||
idc = 1211;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t24: horde_RscStructuredText
|
||||
{
|
||||
idc = 1212;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t25: horde_RscStructuredText
|
||||
{
|
||||
idc = 1213;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t31: horde_RscStructuredText
|
||||
{
|
||||
idc = 1214;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t32: horde_RscStructuredText
|
||||
{
|
||||
idc = 1215;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t33: horde_RscStructuredText
|
||||
{
|
||||
idc = 1216;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t34: horde_RscStructuredText
|
||||
{
|
||||
idc = 1217;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t35: horde_RscStructuredText
|
||||
{
|
||||
idc = 1218;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t41: horde_RscStructuredText
|
||||
{
|
||||
idc = 1219;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t42: horde_RscStructuredText
|
||||
{
|
||||
idc = 1220;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t43: horde_RscStructuredText
|
||||
{
|
||||
idc = 1221;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t44: horde_RscStructuredText
|
||||
{
|
||||
idc = 1222;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t45: horde_RscStructuredText
|
||||
{
|
||||
idc = 1223;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t51: horde_RscStructuredText
|
||||
{
|
||||
idc = 1224;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t52: horde_RscStructuredText
|
||||
{
|
||||
idc = 1225;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t53: horde_RscStructuredText
|
||||
{
|
||||
idc = 1226;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t54: horde_RscStructuredText
|
||||
{
|
||||
idc = 1227;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t55: horde_RscStructuredText
|
||||
{
|
||||
idc = 1228;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t61: horde_RscStructuredText
|
||||
{
|
||||
idc = 1229;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t62: horde_RscStructuredText
|
||||
{
|
||||
idc = 1230;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t63: horde_RscStructuredText
|
||||
{
|
||||
idc = 1231;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t64: horde_RscStructuredText
|
||||
{
|
||||
idc = 1232;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t65: horde_RscStructuredText
|
||||
{
|
||||
idc = 1233;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t71: horde_RscStructuredText
|
||||
{
|
||||
idc = 1234;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t72: horde_RscStructuredText
|
||||
{
|
||||
idc = 1235;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t73: horde_RscStructuredText
|
||||
{
|
||||
idc = 1236;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t74: horde_RscStructuredText
|
||||
{
|
||||
idc = 1237;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t75: horde_RscStructuredText
|
||||
{
|
||||
idc = 1238;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class add_kills: horde_RscStructuredText
|
||||
{
|
||||
idc = 1239;
|
||||
x = 0.536451 * safezoneW + safezoneX;
|
||||
y = 0.709972 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Buttons
|
||||
//********************************************************************************************************************/
|
||||
|
||||
class click_for_prev_page: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_zombies';";
|
||||
};
|
||||
class click_for_next_page: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\page",0.7,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_bandits';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1905;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
148
SQF/dayz_code/Configs/CfgPlayerStats/p_humanity_art.hpp
Normal file
148
SQF/dayz_code/Configs/CfgPlayerStats/p_humanity_art.hpp
Normal file
@@ -0,0 +1,148 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_humanity_art
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [] call horde_epeen_setText_humanity_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"left_page_middle",
|
||||
"left_page_bottom",
|
||||
"left_page_top",
|
||||
"right_page_picture",
|
||||
"click_for_prev_page",
|
||||
"click_for_next_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
// background
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
|
||||
//left page
|
||||
|
||||
class left_page_middle: horde_RscPicture
|
||||
{
|
||||
idc = 1201;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\humanity\humanity_bandit_middle_1.paa";
|
||||
x = 0.209053 * safezoneW + safezoneX;
|
||||
y = 0.27261 * safezoneH + safezoneY;
|
||||
w = 0.282496 * safezoneW;
|
||||
h = 0.419943 * safezoneH;
|
||||
};
|
||||
class left_page_bottom: horde_RscPicture
|
||||
{
|
||||
idc = 1202;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\humanity\humanity_bandit_bottom_1.paa";
|
||||
x = 0.203156 * safezoneW + safezoneX;
|
||||
y = 0.468726 * safezoneH + safezoneY;
|
||||
w = 0.291609 * safezoneW;
|
||||
h = 0.419943 * safezoneH;
|
||||
};
|
||||
class left_page_top: horde_RscPicture
|
||||
{
|
||||
idc = 1203;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\humanity\humanity_bandit_top_1.paa";
|
||||
x = 0.209111 * safezoneW + safezoneX;
|
||||
y = 0.0901794 * safezoneH + safezoneY;
|
||||
w = 0.291609 * safezoneW;
|
||||
h = 0.419943 * safezoneH;
|
||||
};
|
||||
|
||||
// right page
|
||||
|
||||
class right_page_picture: horde_RscPicture
|
||||
{
|
||||
idc = 1204;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\humanity\humanity_bandit_3.paa";
|
||||
x = 0.43621 * safezoneW + safezoneX;
|
||||
y = 0.167545 * safezoneH + safezoneY;
|
||||
w = 0.419188 * safezoneW;
|
||||
h = 0.647412 * safezoneH;
|
||||
};
|
||||
|
||||
// buttons
|
||||
|
||||
class click_for_prev_page: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_journal_humanity';";
|
||||
};
|
||||
class click_for_next_page: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_zombies';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1905;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
249
SQF/dayz_code/Configs/CfgPlayerStats/p_journal_humanity.hpp
Normal file
249
SQF/dayz_code/Configs/CfgPlayerStats/p_journal_humanity.hpp
Normal file
@@ -0,0 +1,249 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_journal_humanity
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [] call horde_epeen_setText_journal_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"journal_header",
|
||||
"journal_text_on_left_hand_page",
|
||||
"humanity_header",
|
||||
"playing_card_blank",
|
||||
"playing_card_face_down",
|
||||
"playing_card_top_value",
|
||||
"playing_card_bottom_value",
|
||||
"playing_card_top_suit",
|
||||
"playing_card_bottom_suit",
|
||||
"playing_card_top_joker",
|
||||
"playing_card_bottom_joker",
|
||||
"playing_card_face_image",
|
||||
"playing_card_player_name",
|
||||
"playing_card_humanity_readout",
|
||||
"click_to_go_back_to_cover",
|
||||
"click_for_next_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4",
|
||||
"click_for_humanity"
|
||||
};
|
||||
|
||||
// background
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
|
||||
//left page
|
||||
|
||||
class journal_header: horde_RscPicture
|
||||
{
|
||||
idc = 1700;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\journal.paa";
|
||||
x = 0.268972 * safezoneW + safezoneX;
|
||||
y = 0.236464 * safezoneH + safezoneY;
|
||||
w = 0.173462 * safezoneW;
|
||||
h = 0.0648851 * safezoneH;
|
||||
};
|
||||
class journal_text_on_left_hand_page: horde_RscStructuredText
|
||||
{
|
||||
idc = 1800;
|
||||
x = 0.23563 * safezoneW + safezoneX;
|
||||
y = 0.324992 * safezoneH + safezoneY;
|
||||
w = 0.237021 * safezoneW;
|
||||
h = 0.45502 * safezoneH;
|
||||
};
|
||||
|
||||
//right page
|
||||
|
||||
class humanity_header: horde_RscPicture
|
||||
{
|
||||
idc = 1701;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\humanity.paa";
|
||||
x = 0.554697 * safezoneW + safezoneX;
|
||||
y = 0.237488 * safezoneH + safezoneY;
|
||||
w = 0.181084 * safezoneW;
|
||||
h = 0.0731088 * safezoneH;
|
||||
};
|
||||
class playing_card_blank: horde_RscPicture
|
||||
{
|
||||
idc = 1702;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\cards\card\face_up.paa";
|
||||
x = 0.51466 * safezoneW + safezoneX;
|
||||
y = 0.324981 * safezoneH + safezoneY;
|
||||
w = 0.26437 * safezoneW;
|
||||
h = 0.45502 * safezoneH;
|
||||
};
|
||||
class playing_card_face_down: horde_RscPicture
|
||||
{
|
||||
idc = 1906;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\cards\card\face_down.paa";
|
||||
x = 0.51466 * safezoneW + safezoneX;
|
||||
y = 0.324981 * safezoneH + safezoneY;
|
||||
w = 0.26437 * safezoneW;
|
||||
h = 0.45502 * safezoneH;
|
||||
};
|
||||
class playing_card_top_value: horde_RscStructuredText
|
||||
{
|
||||
idc = 1801;
|
||||
x = 0.547127 * safezoneW + safezoneX;
|
||||
y = 0.316785 * safezoneH + safezoneY;
|
||||
w = 0.0546973 * safezoneW;
|
||||
h = 0.0875038 * safezoneH;
|
||||
};
|
||||
class playing_card_bottom_value: horde_RscStructuredText
|
||||
{
|
||||
idc = 1802;
|
||||
x = 0.695821 * safezoneW + safezoneX;
|
||||
y = 0.694556 * safezoneH + safezoneY;
|
||||
w = 0.0546973 * safezoneW;
|
||||
h = 0.0875038 * safezoneH;
|
||||
};
|
||||
class playing_card_top_suit: horde_RscStructuredText
|
||||
{
|
||||
idc = 1803;
|
||||
x = 0.556331 * safezoneW + safezoneX;
|
||||
y = 0.382642 * safezoneH + safezoneY;
|
||||
w = 0.0364649 * safezoneW;
|
||||
h = 0.0525023 * safezoneH;
|
||||
};
|
||||
class playing_card_bottom_suit: horde_RscStructuredText
|
||||
{
|
||||
idc = 1804;
|
||||
x = 0.704365 * safezoneW + safezoneX;
|
||||
y = 0.663569 * safezoneH + safezoneY;
|
||||
w = 0.0364649 * safezoneW;
|
||||
h = 0.0525023 * safezoneH;
|
||||
};
|
||||
class playing_card_top_joker: horde_RscStructuredText
|
||||
{
|
||||
idc = 1805;
|
||||
x = 0.56105 * safezoneW + safezoneX;
|
||||
y = 0.329086 * safezoneH + safezoneY;
|
||||
w = 0.0273486 * safezoneW;
|
||||
h = 0.192508 * safezoneH;
|
||||
};
|
||||
class playing_card_bottom_joker: horde_RscStructuredText
|
||||
{
|
||||
idc = 1806;
|
||||
x = 0.707647 * safezoneW + safezoneX;
|
||||
y = 0.584446 * safezoneH + safezoneY;
|
||||
w = 0.0273486 * safezoneW;
|
||||
h = 0.192508 * safezoneH;
|
||||
};
|
||||
class playing_card_face_image: horde_RscStructuredText
|
||||
{
|
||||
idc = 1807;
|
||||
x = 0.586685 * safezoneW + safezoneX;
|
||||
y = 0.425475 * safezoneH + safezoneY;
|
||||
w = 0.127627 * safezoneW;
|
||||
h = 0.22751 * safezoneH;
|
||||
};
|
||||
class playing_card_player_name: horde_RscStructuredText
|
||||
{
|
||||
idc = 1808;
|
||||
x = 0.594 * safezoneW + safezoneX; // 0.591162
|
||||
y = 0.640006 * safezoneH + safezoneY;
|
||||
w = 0.115412 * safezoneW;
|
||||
h = 0.0360368 * safezoneH;
|
||||
};
|
||||
class playing_card_humanity_readout: horde_RscStructuredText
|
||||
{
|
||||
idc = 1809;
|
||||
x = 0.602 * safezoneW + safezoneX; // 0.598569
|
||||
y = 0.680074 * safezoneH + safezoneY;
|
||||
w = 0.099588 * safezoneW;
|
||||
h = 0.0360251 * safezoneH;
|
||||
};
|
||||
|
||||
// buttons
|
||||
|
||||
class click_to_go_back_to_cover: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0; createDialog 'horde_journal_front_cover';";
|
||||
};
|
||||
class click_for_next_page: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\page",0.7,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_humanity_art';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1905;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_for_humanity: horde_RscButton
|
||||
{
|
||||
idc = 1907;
|
||||
x = 0.554688 * safezoneW + safezoneX;
|
||||
y = 0.325 * safezoneH + safezoneY;
|
||||
w = 0.182292 * safezoneW;
|
||||
h = 0.455 * safezoneH;
|
||||
action = "playSound 'horde_sound_turning_page'; [] call horde_epeen_show_humanity_fnc;";
|
||||
};
|
||||
};
|
||||
439
SQF/dayz_code/Configs/CfgPlayerStats/p_murders.hpp
Normal file
439
SQF/dayz_code/Configs/CfgPlayerStats/p_murders.hpp
Normal file
@@ -0,0 +1,439 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_murders
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [player getVariable['humanKills', 0]] call horde_epeen_setText_stats_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"header_one",
|
||||
"main_image",
|
||||
"t11",
|
||||
"t12",
|
||||
"t13",
|
||||
"t14",
|
||||
"t15",
|
||||
"t21",
|
||||
"t22",
|
||||
"t23",
|
||||
"t24",
|
||||
"t25",
|
||||
"t31",
|
||||
"t32",
|
||||
"t33",
|
||||
"t34",
|
||||
"t35",
|
||||
"t41",
|
||||
"t42",
|
||||
"t43",
|
||||
"t44",
|
||||
"t45",
|
||||
"t51",
|
||||
"t52",
|
||||
"t53",
|
||||
"t54",
|
||||
"t55",
|
||||
"t61",
|
||||
"t62",
|
||||
"t63",
|
||||
"t64",
|
||||
"t65",
|
||||
"t75",
|
||||
"t71",
|
||||
"t72",
|
||||
"t73",
|
||||
"t74",
|
||||
"t75",
|
||||
"add_kills",
|
||||
"click_for_prev_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
// picture of blank book pages
|
||||
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
class header_one: horde_RscPicture
|
||||
{
|
||||
idc = 1700;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\murders.paa";
|
||||
x = 0.244842 * safezoneW + safezoneX;
|
||||
y = 0.237536 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class main_image: horde_RscPicture
|
||||
{
|
||||
idc = 1701;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\illus\murders.paa";
|
||||
x = 0.226616 * safezoneW + safezoneX;
|
||||
y = 0.325024 * safezoneH + safezoneY;
|
||||
w = 0.264271 * safezoneW;
|
||||
h = 0.454938 * safezoneH;
|
||||
};
|
||||
class t11: horde_RscStructuredText
|
||||
{
|
||||
idc = 1204;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t12: horde_RscStructuredText
|
||||
{
|
||||
idc = 1205;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t13: horde_RscStructuredText
|
||||
{
|
||||
idc = 1206;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t14: horde_RscStructuredText
|
||||
{
|
||||
idc = 1207;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t15: horde_RscStructuredText
|
||||
{
|
||||
idc = 1208;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t21: horde_RscStructuredText
|
||||
{
|
||||
idc = 1209;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t22: horde_RscStructuredText
|
||||
{
|
||||
idc = 1210;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t23: horde_RscStructuredText
|
||||
{
|
||||
idc = 1211;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t24: horde_RscStructuredText
|
||||
{
|
||||
idc = 1212;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t25: horde_RscStructuredText
|
||||
{
|
||||
idc = 1213;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t31: horde_RscStructuredText
|
||||
{
|
||||
idc = 1214;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t32: horde_RscStructuredText
|
||||
{
|
||||
idc = 1215;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t33: horde_RscStructuredText
|
||||
{
|
||||
idc = 1216;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t34: horde_RscStructuredText
|
||||
{
|
||||
idc = 1217;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t35: horde_RscStructuredText
|
||||
{
|
||||
idc = 1218;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t41: horde_RscStructuredText
|
||||
{
|
||||
idc = 1219;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t42: horde_RscStructuredText
|
||||
{
|
||||
idc = 1220;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t43: horde_RscStructuredText
|
||||
{
|
||||
idc = 1221;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t44: horde_RscStructuredText
|
||||
{
|
||||
idc = 1222;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t45: horde_RscStructuredText
|
||||
{
|
||||
idc = 1223;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t51: horde_RscStructuredText
|
||||
{
|
||||
idc = 1224;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t52: horde_RscStructuredText
|
||||
{
|
||||
idc = 1225;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t53: horde_RscStructuredText
|
||||
{
|
||||
idc = 1226;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t54: horde_RscStructuredText
|
||||
{
|
||||
idc = 1227;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t55: horde_RscStructuredText
|
||||
{
|
||||
idc = 1228;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t61: horde_RscStructuredText
|
||||
{
|
||||
idc = 1229;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t62: horde_RscStructuredText
|
||||
{
|
||||
idc = 1230;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t63: horde_RscStructuredText
|
||||
{
|
||||
idc = 1231;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t64: horde_RscStructuredText
|
||||
{
|
||||
idc = 1232;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t65: horde_RscStructuredText
|
||||
{
|
||||
idc = 1233;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t71: horde_RscStructuredText
|
||||
{
|
||||
idc = 1234;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t72: horde_RscStructuredText
|
||||
{
|
||||
idc = 1235;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t73: horde_RscStructuredText
|
||||
{
|
||||
idc = 1236;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t74: horde_RscStructuredText
|
||||
{
|
||||
idc = 1237;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t75: horde_RscStructuredText
|
||||
{
|
||||
idc = 1238;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class add_kills: horde_RscStructuredText
|
||||
{
|
||||
idc = 1239;
|
||||
x = 0.536451 * safezoneW + safezoneX;
|
||||
y = 0.709972 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Buttons
|
||||
//********************************************************************************************************************/
|
||||
|
||||
class click_for_prev_page: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_bandits';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
461
SQF/dayz_code/Configs/CfgPlayerStats/p_zombies_killed.hpp
Normal file
461
SQF/dayz_code/Configs/CfgPlayerStats/p_zombies_killed.hpp
Normal file
@@ -0,0 +1,461 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Set up dialog
|
||||
/********************************************************************************************************************/
|
||||
|
||||
class horde_journal_pages_zombies
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = false;
|
||||
onLoad = "uiNamespace setVariable ['horde_myDisplay', (_this select 0)]; [player getVariable['zombieKills', 0]] call horde_epeen_setText_stats_fnc;";
|
||||
enableSimulation = true;
|
||||
controlsBackground[] = {};
|
||||
objects[] = {};
|
||||
controls[] =
|
||||
{
|
||||
"book_page_image",
|
||||
"header_one",
|
||||
"header_two",
|
||||
"main_image",
|
||||
"t11",
|
||||
"t12",
|
||||
"t13",
|
||||
"t14",
|
||||
"t15",
|
||||
"t21",
|
||||
"t22",
|
||||
"t23",
|
||||
"t24",
|
||||
"t25",
|
||||
"t31",
|
||||
"t32",
|
||||
"t33",
|
||||
"t34",
|
||||
"t35",
|
||||
"t41",
|
||||
"t42",
|
||||
"t43",
|
||||
"t44",
|
||||
"t45",
|
||||
"t51",
|
||||
"t52",
|
||||
"t53",
|
||||
"t54",
|
||||
"t55",
|
||||
"t61",
|
||||
"t62",
|
||||
"t63",
|
||||
"t64",
|
||||
"t65",
|
||||
"t75",
|
||||
"t71",
|
||||
"t72",
|
||||
"t73",
|
||||
"t74",
|
||||
"t75",
|
||||
"add_kills",
|
||||
"click_for_prev_page",
|
||||
"click_for_next_page",
|
||||
"click_here_to_close_book_1",
|
||||
"click_here_to_close_book_2",
|
||||
"click_here_to_close_book_3",
|
||||
"click_here_to_close_book_4"
|
||||
};
|
||||
|
||||
// picture of blank book pages
|
||||
|
||||
// classhorde_RscStructuredText;
|
||||
class book_page_image: horde_RscPicture
|
||||
{
|
||||
idc = 1200;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\book\pages_2.paa";
|
||||
x = 0.199165 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 0.601429 * safezoneW;
|
||||
h = 1.01491 * safezoneH;
|
||||
};
|
||||
class header_one: horde_RscPicture
|
||||
{
|
||||
idc = 1700;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\zombie.paa";
|
||||
x = 0.253926 * safezoneW + safezoneX;
|
||||
y = 0.219948 * safezoneH + safezoneY;
|
||||
w = 0.200505 * safezoneW;
|
||||
h = 0.0700129 * safezoneH;
|
||||
};
|
||||
class header_two: horde_RscPicture
|
||||
{
|
||||
idc = 1701;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\headers\killed.paa";
|
||||
x = 0.244842 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class main_image: horde_RscPicture
|
||||
{
|
||||
idc = 1702;
|
||||
text = "\z\addons\dayz_communityassets\pictures\playerstats\illus\zombie.paa";
|
||||
x = 0.281293 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.136692 * safezoneW;
|
||||
h = 0.437441 * safezoneH;
|
||||
};
|
||||
class t11: horde_RscStructuredText
|
||||
{
|
||||
idc = 1204;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t12: horde_RscStructuredText
|
||||
{
|
||||
idc = 1205;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t13: horde_RscStructuredText
|
||||
{
|
||||
idc = 1206;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t14: horde_RscStructuredText
|
||||
{
|
||||
idc = 1207;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t15: horde_RscStructuredText
|
||||
{
|
||||
idc = 1208;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.220038 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t21: horde_RscStructuredText
|
||||
{
|
||||
idc = 1209;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t22: horde_RscStructuredText
|
||||
{
|
||||
idc = 1210;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t23: horde_RscStructuredText
|
||||
{
|
||||
idc = 1211;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t24: horde_RscStructuredText
|
||||
{
|
||||
idc = 1212;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t25: horde_RscStructuredText
|
||||
{
|
||||
idc = 1213;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.290028 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t31: horde_RscStructuredText
|
||||
{
|
||||
idc = 1214;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t32: horde_RscStructuredText
|
||||
{
|
||||
idc = 1215;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t33: horde_RscStructuredText
|
||||
{
|
||||
idc = 1216;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t34: horde_RscStructuredText
|
||||
{
|
||||
idc = 1217;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t35: horde_RscStructuredText
|
||||
{
|
||||
idc = 1218;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.360019 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t41: horde_RscStructuredText
|
||||
{
|
||||
idc = 1219;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t42: horde_RscStructuredText
|
||||
{
|
||||
idc = 1220;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t43: horde_RscStructuredText
|
||||
{
|
||||
idc = 1221;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t44: horde_RscStructuredText
|
||||
{
|
||||
idc = 1222;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t45: horde_RscStructuredText
|
||||
{
|
||||
idc = 1223;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.43001 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t51: horde_RscStructuredText
|
||||
{
|
||||
idc = 1224;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t52: horde_RscStructuredText
|
||||
{
|
||||
idc = 1225;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t53: horde_RscStructuredText
|
||||
{
|
||||
idc = 1226;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t54: horde_RscStructuredText
|
||||
{
|
||||
idc = 1227;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t55: horde_RscStructuredText
|
||||
{
|
||||
idc = 1228;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.5 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t61: horde_RscStructuredText
|
||||
{
|
||||
idc = 1229;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t62: horde_RscStructuredText
|
||||
{
|
||||
idc = 1230;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t63: horde_RscStructuredText
|
||||
{
|
||||
idc = 1231;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t64: horde_RscStructuredText
|
||||
{
|
||||
idc = 1232;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t65: horde_RscStructuredText
|
||||
{
|
||||
idc = 1233;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.569991 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t71: horde_RscStructuredText
|
||||
{
|
||||
idc = 1234;
|
||||
x = 0.527338 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t72: horde_RscStructuredText
|
||||
{
|
||||
idc = 1235;
|
||||
x = 0.572902 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t73: horde_RscStructuredText
|
||||
{
|
||||
idc = 1236;
|
||||
x = 0.618466 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t74: horde_RscStructuredText
|
||||
{
|
||||
idc = 1237;
|
||||
x = 0.66403 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class t75: horde_RscStructuredText
|
||||
{
|
||||
idc = 1238;
|
||||
x = 0.709594 * safezoneW + safezoneX;
|
||||
y = 0.639981 * safezoneH + safezoneY;
|
||||
w = 0.0546767 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
class add_kills: horde_RscStructuredText
|
||||
{
|
||||
idc = 1239;
|
||||
x = 0.536451 * safezoneW + safezoneX;
|
||||
y = 0.709972 * safezoneH + safezoneY;
|
||||
w = 0.218707 * safezoneW;
|
||||
h = 0.0699905 * safezoneH;
|
||||
};
|
||||
|
||||
/********************************************************************************************************************/
|
||||
// Buttons
|
||||
//********************************************************************************************************************/
|
||||
|
||||
class click_for_prev_page: horde_RscButton
|
||||
{
|
||||
idc = 1900;
|
||||
x = 0.217398 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_humanity_art';";
|
||||
};
|
||||
class click_for_next_page: horde_RscButton
|
||||
{
|
||||
idc = 1901;
|
||||
x = 0.5 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.282602 * safezoneW;
|
||||
h = 0.665029 * safezoneH;
|
||||
// soundPush[] = {"sounds\page",0.7,1};
|
||||
action = "playSound 'horde_sound_turning_page'; closeDialog 0; createDialog 'horde_journal_pages_headshots';";
|
||||
};
|
||||
class click_here_to_close_book_1: horde_RscButton
|
||||
{
|
||||
idc = 1902;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = -0.00752226 * safezoneH + safezoneY;
|
||||
w = 1.03925 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_2: horde_RscButton
|
||||
{
|
||||
idc = 1903;
|
||||
x = 0.791719 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_3: horde_RscButton
|
||||
{
|
||||
idc = 1904;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.832515 * safezoneH + safezoneY;
|
||||
w = 1.0119 * safezoneW;
|
||||
h = 0.175008 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
class click_here_to_close_book_4: horde_RscButton
|
||||
{
|
||||
idc = 1905;
|
||||
x = -0.00139144 * safezoneW + safezoneX;
|
||||
y = 0.167485 * safezoneH + safezoneY;
|
||||
w = 0.209673 * safezoneW;
|
||||
h = 0.68253 * safezoneH;
|
||||
// soundPush[] = {"sounds\close",1,1};
|
||||
action = "playSound 'horde_sound_close_book'; closeDialog 0;";
|
||||
};
|
||||
};
|
||||
22
SQF/dayz_code/Configs/CfgPlayerStats/sound.hpp
Normal file
22
SQF/dayz_code/Configs/CfgPlayerStats/sound.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
/********************************************************************************************************************/
|
||||
// Config file for [DayZ]
|
||||
// Created by: [Horde/Das Attorney]
|
||||
//********************************************************************************************************************/
|
||||
|
||||
|
||||
class CfgSounds
|
||||
{
|
||||
class Vas_yessir;
|
||||
class horde_sound_turning_page: Vas_yessir
|
||||
{
|
||||
name = "horde_sound_turning_page";
|
||||
sound[] = {"\z\addons\dayz_communityassets\sounds\page.wss", 0.5, 1};
|
||||
titles[] = {};
|
||||
};
|
||||
class horde_sound_close_book: Vas_yessir
|
||||
{
|
||||
name = "horde_sound_close_book";
|
||||
sound[] = {"\z\addons\dayz_communityassets\sounds\close.wss", 1, 1};
|
||||
titles[] = {};
|
||||
};
|
||||
};
|
||||
1110
SQF/dayz_code/Configs/RscDisplay/RscDisplayCraftingMenu.hpp
Normal file
1110
SQF/dayz_code/Configs/RscDisplay/RscDisplayCraftingMenu.hpp
Normal file
File diff suppressed because it is too large
Load Diff
1016
SQF/dayz_code/Configs/RscDisplay/RscDisplayGear.hpp
Normal file
1016
SQF/dayz_code/Configs/RscDisplay/RscDisplayGear.hpp
Normal file
File diff suppressed because it is too large
Load Diff
54
SQF/dayz_code/Configs/RscDisplay/RscDisplayGenderSelect.hpp
Normal file
54
SQF/dayz_code/Configs/RscDisplay/RscDisplayGenderSelect.hpp
Normal file
@@ -0,0 +1,54 @@
|
||||
class RscDisplayGenderSelect
|
||||
{
|
||||
idd = 6902;
|
||||
enableDisplay = 1;
|
||||
class controls
|
||||
{
|
||||
class GenderPic_Man : RscActiveText
|
||||
{
|
||||
idc = -1;
|
||||
style = 48;
|
||||
text = "z\addons\dayz_code\gui\gender_menu_man.paa";
|
||||
x = 0.28 * safezoneW + safezoneX;
|
||||
y = 0.24 * safezoneH + safezoneY;
|
||||
w = 0.117188 * safezoneW;
|
||||
h = 0.542373 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;dayz_selectGender = 'Survivor2_DZ';";
|
||||
};
|
||||
class GenderPic_Woman : RscActiveText
|
||||
{
|
||||
idc = -1;
|
||||
style = 48;
|
||||
text = "z\addons\dayz_code\gui\gender_menu_woman.paa";
|
||||
x = 0.6 * safezoneW + safezoneX;
|
||||
y = 0.24 * safezoneH + safezoneY;
|
||||
w = 0.117188 * safezoneW;
|
||||
h = 0.542373 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;dayz_selectGender = 'SurvivorW2_DZ';";
|
||||
};
|
||||
class Gender_Title: RscStructuredText
|
||||
{
|
||||
idc = -1;
|
||||
text = "$STR_UI_GENDER_TITLE";
|
||||
x = 0.4 * safezoneW + safezoneX;
|
||||
y = 0.221864 * safezoneH + safezoneY;
|
||||
w = 0.2 * safezoneW;
|
||||
h = 0.05 * safezoneH;
|
||||
colorBackground[] = {-1,-1,-1,0};
|
||||
};
|
||||
class Gender_Description: RscStructuredText
|
||||
{
|
||||
idc = -1;
|
||||
text = "$STR_UI_GENDER_DESC";
|
||||
x = 0.4 * safezoneW + safezoneX;
|
||||
y = 0.366134 * safezoneH + safezoneY;
|
||||
w = 0.2 * safezoneW;
|
||||
h = 0.3 * safezoneH;
|
||||
colorBackground[] = {-1,-1,-1,0};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -2,9 +2,6 @@ class RscDisplaySpawnSelecter {
|
||||
idd = 6903;
|
||||
enableDisplay = 1;
|
||||
|
||||
onLoad = "DZE_DisplaySpawnSelector = true;";
|
||||
//onUnload = "DZE_DisplaySpawnSelector = false;";
|
||||
|
||||
class controlsBackground {
|
||||
class Mainback : RscPicture {
|
||||
idc = -1;
|
||||
@@ -28,7 +25,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.3044 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 1;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 1;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegion2: RscActiveText
|
||||
@@ -42,7 +39,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.270356 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 0;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 0;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegion3: RscActiveText
|
||||
@@ -56,7 +53,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.275 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 2;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 2;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegion4: RscActiveText
|
||||
@@ -70,7 +67,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.274546 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 3;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 3;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegion5: RscActiveText
|
||||
@@ -84,7 +81,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.275001 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 4;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 4;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegion6: RscActiveText
|
||||
@@ -98,7 +95,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.275 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 5;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 5;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
class RscSelectedRegionRandom: RscActiveText
|
||||
@@ -112,7 +109,7 @@ class RscDisplaySpawnSelecter {
|
||||
h = 0.331135035 * safezoneH;
|
||||
color[] = { 0.5, 0.5, 0.5, 1 };
|
||||
colorActive[] = { 1, 1, 1, 1 };
|
||||
action = "closeDialog 0;DZE_DisplaySpawnSelector = false;dayz_selectRegion = 9;";
|
||||
action = "closeDialog 0;dayz_selectRegion = 9;";
|
||||
onMouseEnter = "ctrlSetFocus (_this select 0)";
|
||||
};
|
||||
|
||||
|
||||
300
SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp
Normal file
300
SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp
Normal file
@@ -0,0 +1,300 @@
|
||||
class RscTitles
|
||||
{
|
||||
class Default
|
||||
{
|
||||
idd = -1;
|
||||
movingEnable = 0;
|
||||
duration = 4;
|
||||
};
|
||||
titles[] = {"DeathScreen_DZ","RscTitleStructuredText"};
|
||||
class DeathScreen_DZ {
|
||||
idd = -1;
|
||||
movingEnable = "false";
|
||||
duration = 120;
|
||||
fadein = 0;
|
||||
name = "DeathScreen";
|
||||
controls[] = {"DeathScreen"};
|
||||
class DeathScreen: RscPicture {
|
||||
x = 0 * safezoneW + safezoneX;
|
||||
y = 0 * safezoneH + safezoneY;
|
||||
w = 1 * safezoneW;
|
||||
h = 1 * safezoneH;
|
||||
text = "\z\addons\dayz_code\gui\deathscreen.paa";
|
||||
};
|
||||
};
|
||||
class playerKillScore {
|
||||
idd = 6902;
|
||||
movingEnable = 0;
|
||||
duration = 5;
|
||||
name = "playerKillScore";
|
||||
onLoad = "uiNamespace setVariable ['DAYZ_GUI_kills', _this select 0];";
|
||||
class ControlsBackground {
|
||||
class RscPicture_1201: RscPictureGUI
|
||||
{
|
||||
idc = 1400;
|
||||
text = "\z\addons\dayz_code\gui\stats_kills_human_ca.paa";
|
||||
x = 0.044687 * safezoneW + safezoneX;
|
||||
y = 0.934779 * safezoneH + safezoneY;
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
};
|
||||
class RscPicture_1200: RscPictureGUI
|
||||
{
|
||||
idc = 1401;
|
||||
text = "\z\addons\dayz_code\gui\stats_kills_zombie_ca.paa";
|
||||
x = 0.044687 * safezoneW + safezoneX;
|
||||
y = 0.876025 * safezoneH + safezoneY;
|
||||
w = 0.06;
|
||||
h = 0.08;
|
||||
};
|
||||
};
|
||||
class Controls{
|
||||
class RscText1: RscStructuredTextGUI
|
||||
{
|
||||
idc = 1410;
|
||||
text = "10";
|
||||
x = (0.044687 * safezoneW + safezoneX) - 0.01;
|
||||
y = 0.934779 * safezoneH + safezoneY;
|
||||
w = 0.08;
|
||||
h = 0.08;
|
||||
};
|
||||
class RscText2: RscStructuredTextGUI
|
||||
{
|
||||
idc = 1411;
|
||||
text = "1000";
|
||||
x = (0.044687 * safezoneW + safezoneX) - 0.01;
|
||||
y = 0.876025 * safezoneH + safezoneY;
|
||||
w = 0.08;
|
||||
h = 0.08;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class playerStatusWaiting {
|
||||
idd = 6901;
|
||||
movingEnable = 0;
|
||||
duration = 100000;
|
||||
name = "playerStatusWaiting";
|
||||
onLoad = "uiNamespace setVariable ['DAYZ_GUI_waiting', _this select 0];";
|
||||
class ControlsBackground {
|
||||
class RscText_1402: RscPictureGUI
|
||||
{
|
||||
idc = 1402;
|
||||
text = "#(argb,8,8,3)color(1,1,1,1)";
|
||||
x = 0.473572 * safezoneW + safezoneX;
|
||||
y = 0.418158 * safezoneH + safezoneY;
|
||||
w = 0.0634286 * safezoneW;
|
||||
h = 0.136829 * safezoneH;
|
||||
colorText[] = {1,1,1,1};
|
||||
};
|
||||
class RscText_1400: RscPictureGUI
|
||||
{
|
||||
idc = 1400;
|
||||
text = "#(argb,8,8,3)color(1,1,1,1)";
|
||||
x = 0.473572 * safezoneW + safezoneX;
|
||||
y = 0.418158 * safezoneH + safezoneY;
|
||||
w = 0.0634286 * safezoneW;
|
||||
h = 0; //0.136829 * safezoneH;
|
||||
colorText[] = {0,0,0,1};
|
||||
};
|
||||
};
|
||||
class Controls {
|
||||
class RscPicture_1401: RscPictureGUI
|
||||
{
|
||||
idc = 1401;
|
||||
text = "\z\addons\dayz_code\gui\status\status_waiting_ca.paa";
|
||||
x = 0.434999 * safezoneW + safezoneX;
|
||||
y = 0.392207 * safezoneH + safezoneY;
|
||||
w = 0.141 * safezoneW;
|
||||
h = 0.188013 * safezoneH;
|
||||
colorText[] = {0.38,0.63,0.26,1};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class playerStatusGUI {
|
||||
idd = 6900;
|
||||
movingEnable = 0;
|
||||
duration = 100000;
|
||||
name = "statusBorder";
|
||||
onLoad = "uiNamespace setVariable ['DAYZ_GUI_display', _this select 0];";
|
||||
class ControlsBackground {
|
||||
class RscPicture_1901: RscPictureGUI
|
||||
{
|
||||
idc = 1901;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.86 * safezoneH + safezoneY;//2
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1201: RscPictureGUI
|
||||
{
|
||||
idc = 1201;
|
||||
text = "\z\addons\dayz_code\gui\status\status_food_border_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.86 * safezoneH + safezoneY;//2
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1900: RscPictureGUI
|
||||
{
|
||||
idc = 1900;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.79 * safezoneH + safezoneY; //3
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1200: RscPictureGUI
|
||||
{
|
||||
idc = 1200;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_blood_border_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.79 * safezoneH + safezoneY; //3
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1902: RscPictureGUI
|
||||
{
|
||||
idc = 1902;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.93 * safezoneH + safezoneY; //1
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1202: RscPictureGUI
|
||||
{
|
||||
idc = 1202;
|
||||
text = "\z\addons\dayz_code\gui\status\status_thirst_border_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.93 * safezoneH + safezoneY; //1
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1908: RscPictureGUI
|
||||
{
|
||||
idc = 1908;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.72 * safezoneH + safezoneY; //3
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1208: RscPictureGUI
|
||||
{
|
||||
idc = 1208;
|
||||
text = "\z\addons\dayz_code\gui\status\status_temp_outside_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.72 * safezoneH + safezoneY; //3
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1203: RscPictureGUI
|
||||
{
|
||||
idc = 1203;
|
||||
text = "\z\addons\dayz_code\gui\status\status_effect_brokenleg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.58 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
colorText[] = {1,1,1,1};
|
||||
};
|
||||
class RscPicture_1204: RscPictureGUI
|
||||
{
|
||||
idc = 1204;
|
||||
text = "\z\addons\dayz_code\gui\status\status_connection_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.51 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
colorText[] = {1,1,1,1};
|
||||
};
|
||||
class RscPicture_1205: RscPictureGUI
|
||||
{
|
||||
idc = 1205;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.30 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1206: RscPictureGUI
|
||||
{
|
||||
idc = 1206;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bg.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.37 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
};
|
||||
class Controls {
|
||||
class RscPicture_1301: RscPictureGUI
|
||||
{
|
||||
idc = 1301;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_food_inside_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.86 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1300: RscPictureGUI
|
||||
{
|
||||
idc = 1300;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_blood_inside_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.79 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1302: RscPictureGUI
|
||||
{
|
||||
idc = 1302;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_thirst_inside_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.93 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1306: RscPictureGUI
|
||||
{
|
||||
idc = 1306;
|
||||
//text = "\z\addons\dayz_code\gui\status\status_temp_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.72 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1303: RscPictureGUI
|
||||
{
|
||||
idc = 1303;
|
||||
text = "\z\addons\dayz_code\gui\status\status_bleeding_ca.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.79 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
colorText[] = {1,1,1,0.5};
|
||||
};
|
||||
class RscPicture_1304: RscPictureGUI
|
||||
{
|
||||
idc = 1304;
|
||||
text = "\z\addons\dayz_code\gui\status\status_noise.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.30 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
class RscPicture_1305: RscPictureGUI
|
||||
{
|
||||
idc = 1305;
|
||||
text = "\z\addons\dayz_code\gui\status\status_visible.paa";
|
||||
x = 0.955313 * safezoneW + safezoneX;
|
||||
y = 0.37 * safezoneH + safezoneY;
|
||||
w = 0.075;
|
||||
h = 0.10;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
6
SQF/dayz_code/Configs/RscDisplay/includes.hpp
Normal file
6
SQF/dayz_code/Configs/RscDisplay/includes.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "RscDisplayCraftingMenu.hpp"
|
||||
//#include "RscDisplayGear.hpp"
|
||||
#include "RscDisplayGenderSelect.hpp"
|
||||
#include "RscDisplaySpawnSelecter.hpp"
|
||||
#include "RscPlayerUI.hpp"
|
||||
#include "RscMap.hpp"
|
||||
File diff suppressed because it is too large
Load Diff
@@ -79,37 +79,6 @@ class CfgAddons
|
||||
};
|
||||
};
|
||||
|
||||
class RscPictureGUI
|
||||
{
|
||||
access = 0;
|
||||
type = 0;
|
||||
idc = -1;
|
||||
colorBackground[] = {0,0,0,0};
|
||||
colorText[] = {0.38,0.63,0.26,0.75};
|
||||
font = "TahomaB";
|
||||
sizeEx = 0;
|
||||
lineSpacing = 0;
|
||||
text = "";
|
||||
style = "0x30 + 0x100";
|
||||
x = 0;
|
||||
y = 0;
|
||||
w = 0.2;
|
||||
h = 0.15;
|
||||
};
|
||||
|
||||
class RscStructuredText {
|
||||
class Attributes;
|
||||
};
|
||||
class RscStructuredTextGUI: RscStructuredText
|
||||
{
|
||||
colorBackground[] = {0,0,0,0};
|
||||
colorText[] = {1,1,1,1};
|
||||
class Attributes: Attributes
|
||||
{
|
||||
align = "center";
|
||||
valign = "middle";
|
||||
};
|
||||
};
|
||||
#include "Configs\cfgMoves.hpp"
|
||||
#include "Configs\rscTitles.hpp"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user