From 62312a85c76593ae973d8fe18f9650b138d9758c Mon Sep 17 00:00:00 2001 From: ebayShopper Date: Sun, 26 Feb 2017 15:31:59 -0500 Subject: [PATCH] Add message for already wearing clothes Because it isn't always obvious. --- SQF/dayz_code/actions/player_wearClothes.sqf | 3 ++- SQF/dayz_code/stringtable.xml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/player_wearClothes.sqf b/SQF/dayz_code/actions/player_wearClothes.sqf index 1fc9bda49..22f973dfb 100644 --- a/SQF/dayz_code/actions/player_wearClothes.sqf +++ b/SQF/dayz_code/actions/player_wearClothes.sqf @@ -55,8 +55,9 @@ if ( (isClass(_config >> _itemNew)) ) then { player addMagazine _itemNew; _morphHandle = [dayz_playerUID,dayz_characterID,_model] spawn player_humanityMorph; }; + } else { + localize "str_player_fail_wear3" call dayz_rollingMessages; }; - } else { localize "str_epoch_player_86" call dayz_rollingMessages; }; diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index 0ab5aa5b9..017954262 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -7316,6 +7316,9 @@ Pour l'instant cette tenue n'existe pas pour femmes. Hráči, kteří hrají za ženu nemohou měnit oblečení. Toto sexistické omezení bude odstraněno v nějakém budoucím patchi. + + You are already wearing these clothes. + Wait for the previous action to complete to perform another! Du musst erst das Eine beenden, bevor du etwas Neues startest!