mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-22 20:12:20 +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[] = {};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user