This commit is contained in:
icomrade
2017-03-27 23:53:08 -04:00
parent 0275c58a89
commit 12abbfa686
3 changed files with 6 additions and 5 deletions

View File

@@ -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.

View File

@@ -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;

View File

@@ -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;
};