Hello to all of you,
Today, we meet again for a tutorial related to Altis-Life. This tutorial consists, as its name indicates, in deleting the messages sent to all the players in the chat during certain actions.
If you have a problem of installation, do not hesitate to open a topic on the forum rather than to answer by asking for help under the tutorial.
Now it's time for the tutorial.
To remove the message when a player is tazed, in the core/civilian/fn_tazed.sqf, you must delete this line:
Code:
[0,"STR_NOTF_Tazed",true,[profileName, _shooter getVariable ["realname",name _shooter]]] remoteExecCall ["life_fnc_broadcast",RCLIENT];
When impounding, in the core/actions/fn_impoundAction.sqf, you must delete this line:
Code:
[0,"STR_NOTF_HasImpounded",true,[profileName,((_vehicleData select 0) select 1),_vehicleName]] remoteExecCall ["life_fnc_broadcast",RCLIENT];
To remove the name of the officer who handcuffed an individual, in the core/cop/fn_restrain.sqf, replace this line:
Code:
titleText[format [localize "STR_Cop_restrained",_cop getVariable ["realname",name _cop]],"PLAIN"];
Code:
titleText ["Vous avez été menotté","PLAIN"];
To remove the messages of the killed players, it is in Arma directly, you must modify the difficulty of the server for that.
This can be done with this tutorial.
Thank you for reading and following this tutorial, see you soon
