mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Should fix #1926
This commit is contained in:
@@ -16,7 +16,8 @@
|
||||
[FIXED] Arma cheats enterable on map display and create marker text box. #1915 @BigEgg17
|
||||
[FIXED] It is no longer possible to duplicate melee weapons by double clicking to drop and right clicking at the same time. @F507DMT
|
||||
[FIXED] Death messages sometimes showing RunOver when they should not due to dayz_hitBy variable not resetting after being runover. @oiad
|
||||
[FIXED] Fix CFGMoves/Animation CTD on server. Thanks Choc
|
||||
[FIXED] CFGMoves/Animation CTD on server. Thanks Choc
|
||||
[FIXED] DayZ_RollingMessage FPS impact. #1926 @BigEgg17
|
||||
|
||||
[NOTE] Fixes below are included in the mission file and server pbo as part of server package 1.0.6.1A (March 10th 2017)
|
||||
[FIXED] Fixed food and drink going down 10x faster from melee and other "working" actions.
|
||||
|
||||
@@ -621,7 +621,7 @@ class RscTitles
|
||||
};
|
||||
};
|
||||
class RSC_DZ_Messages {
|
||||
idd = 4099999;
|
||||
idd = -1;
|
||||
movingEnable = 0;
|
||||
fadein = 0;
|
||||
fadeout = 5;
|
||||
@@ -631,7 +631,7 @@ class RscTitles
|
||||
class Controls {
|
||||
class Message_Text: RscStructuredText
|
||||
{
|
||||
idc = 4099998;
|
||||
idc = 3;
|
||||
text = "";
|
||||
x = 0.3 * safezoneW + safezoneX;
|
||||
y = 0.859137 * safezoneH + safezoneY;
|
||||
|
||||
@@ -540,8 +540,8 @@ if (!isDedicated) then {
|
||||
disableSerialization;
|
||||
_showText = {
|
||||
private "_textLine";
|
||||
4099999 cutRsc ["RSC_DZ_Messages","plain"];
|
||||
_textLine = (uiNamespace getVariable "DZ_Messages") displayCtrl 4099998;
|
||||
15 cutRsc ["RSC_DZ_Messages","plain"];
|
||||
_textLine = (uiNamespace getVariable "DZ_Messages") displayCtrl 3;
|
||||
_textLine ctrlSetStructuredText (parseText _this);
|
||||
_textLine ctrlCommit 0;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user