mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +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] 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] 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] 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)
|
[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.
|
[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 {
|
class RSC_DZ_Messages {
|
||||||
idd = 4099999;
|
idd = -1;
|
||||||
movingEnable = 0;
|
movingEnable = 0;
|
||||||
fadein = 0;
|
fadein = 0;
|
||||||
fadeout = 5;
|
fadeout = 5;
|
||||||
@@ -631,7 +631,7 @@ class RscTitles
|
|||||||
class Controls {
|
class Controls {
|
||||||
class Message_Text: RscStructuredText
|
class Message_Text: RscStructuredText
|
||||||
{
|
{
|
||||||
idc = 4099998;
|
idc = 3;
|
||||||
text = "";
|
text = "";
|
||||||
x = 0.3 * safezoneW + safezoneX;
|
x = 0.3 * safezoneW + safezoneX;
|
||||||
y = 0.859137 * safezoneH + safezoneY;
|
y = 0.859137 * safezoneH + safezoneY;
|
||||||
|
|||||||
@@ -540,8 +540,8 @@ if (!isDedicated) then {
|
|||||||
disableSerialization;
|
disableSerialization;
|
||||||
_showText = {
|
_showText = {
|
||||||
private "_textLine";
|
private "_textLine";
|
||||||
4099999 cutRsc ["RSC_DZ_Messages","plain"];
|
15 cutRsc ["RSC_DZ_Messages","plain"];
|
||||||
_textLine = (uiNamespace getVariable "DZ_Messages") displayCtrl 4099998;
|
_textLine = (uiNamespace getVariable "DZ_Messages") displayCtrl 3;
|
||||||
_textLine ctrlSetStructuredText (parseText _this);
|
_textLine ctrlSetStructuredText (parseText _this);
|
||||||
_textLine ctrlCommit 0;
|
_textLine ctrlCommit 0;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user