mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Merge pull request #1751 from oiad/master
Plot/Door management userlist fix
This commit is contained in:
@@ -40,7 +40,7 @@ class DoorManagement
|
||||
idc = 7104;
|
||||
text = $STR_EPOCH_ADD;
|
||||
x = 0.33 * safezoneW + safezoneX;
|
||||
y = 0.70 * safezoneH + safezoneY;
|
||||
y = 0.72 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "[lbData [7101,lbCurSel 7101]] call DoorAddFriend;";
|
||||
};
|
||||
@@ -50,7 +50,7 @@ class DoorManagement
|
||||
idc = 7105;
|
||||
text = $STR_EPOCH_DELETE;
|
||||
x = 0.47 * safezoneW + safezoneX;
|
||||
y = 0.70 * safezoneH + safezoneY;
|
||||
y = 0.72 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "[(lbCurSel 7102)] call DoorRemoveFriend;";
|
||||
};
|
||||
@@ -60,7 +60,7 @@ class DoorManagement
|
||||
idc = 7106;
|
||||
text = $STR_UI_CLOSE;
|
||||
x = 0.40 * safezoneW + safezoneX;
|
||||
y = 0.74 * safezoneH + safezoneY;
|
||||
y = 0.75 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);";
|
||||
};
|
||||
|
||||
@@ -64,7 +64,6 @@ class PlotManagement
|
||||
w = 0.30 * safezoneW;
|
||||
h = 0.05 * safezoneH;
|
||||
colorText[] = {1,1,1,1};
|
||||
|
||||
};
|
||||
|
||||
class RscText_7014: RscStructuredText
|
||||
@@ -140,7 +139,7 @@ class PlotManagement
|
||||
idc = -1;
|
||||
text = $STR_EPOCH_ADD;
|
||||
x = 0.33 * safezoneW + safezoneX;
|
||||
y = 0.70 * safezoneH + safezoneY;
|
||||
y = 0.72 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "[lbData [7001,lbCurSel 7001]] call PlotAddFriend;";
|
||||
};
|
||||
@@ -150,7 +149,7 @@ class PlotManagement
|
||||
idc = -1;
|
||||
text = $STR_EPOCH_DELETE;
|
||||
x = 0.47 * safezoneW + safezoneX;
|
||||
y = 0.70 * safezoneH + safezoneY;
|
||||
y = 0.72 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "[(lbCurSel 7002)] call PlotRemoveFriend;";
|
||||
};
|
||||
@@ -160,7 +159,7 @@ class PlotManagement
|
||||
idc = -1;
|
||||
text = $STR_UI_CLOSE;
|
||||
x = 0.40 * safezoneW + safezoneX;
|
||||
y = 0.74 * safezoneH + safezoneY;
|
||||
y = 0.75 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user