mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 13:26:39 +03:00
Updated Displays
Disabled new gear system
This commit is contained in:
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};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user