From 12abbfa686dc4236402cb3ff3a69898c9adb6bcb Mon Sep 17 00:00:00 2001 From: icomrade Date: Mon, 27 Mar 2017 23:53:08 -0400 Subject: [PATCH] Should fix #1926 --- CHANGE LOG 1.0.6.2.txt | 3 ++- SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp | 4 ++-- SQF/dayz_code/init/compiles.sqf | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGE LOG 1.0.6.2.txt b/CHANGE LOG 1.0.6.2.txt index 808eac8f1..b74664ed1 100644 --- a/CHANGE LOG 1.0.6.2.txt +++ b/CHANGE LOG 1.0.6.2.txt @@ -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. diff --git a/SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp b/SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp index d15ec32c2..654797cf8 100644 --- a/SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp +++ b/SQF/dayz_code/Configs/RscDisplay/RscPlayerUI.hpp @@ -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; diff --git a/SQF/dayz_code/init/compiles.sqf b/SQF/dayz_code/init/compiles.sqf index 48645e3b3..e09c2f923 100644 --- a/SQF/dayz_code/init/compiles.sqf +++ b/SQF/dayz_code/init/compiles.sqf @@ -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; };