From a1c470d56fb585a0a5e30db034a2ced764454f50 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Fri, 27 Jan 2017 20:39:22 -0500 Subject: [PATCH] Hide group name tags at startup when streamerMode is on --- SQF/dayz_code/init/variables.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/init/variables.sqf b/SQF/dayz_code/init/variables.sqf index b397dc79a..89ac745a3 100644 --- a/SQF/dayz_code/init/variables.sqf +++ b/SQF/dayz_code/init/variables.sqf @@ -706,7 +706,7 @@ if (!isDedicated) then { DZE_Quarantine = false; DZE_InRadiationZone = false; DZE_myVehicle = objNull; - dayz_groupNameTags = true; + dayz_groupNameTags = (profileNamespace getVariable ["streamerMode",0] == 0); //If streamer mode is on then hide name tags at startup. Toggle with Windows key. dayz_minusDownTime = 0; dayz_lastCodeFail = 0; };