2015-12-07 16:24:52 +00:00
|
|
|
/*
|
|
|
|
Author: Aaron Clark - EpochMod.com
|
|
|
|
|
|
|
|
Contributors:
|
|
|
|
|
|
|
|
Description:
|
|
|
|
Epoch handle localized message function
|
|
|
|
|
|
|
|
Licence:
|
|
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
|
|
|
|
Github:
|
2016-06-13 16:54:19 +00:00
|
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_handleServerMessage.sqf
|
2016-04-08 20:21:46 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
[_this select 1, _this select 2] remoteExec ['EPOCH_handleServerMessage',_x];
|
|
|
|
|
2015-12-07 16:24:52 +00:00
|
|
|
*/
|
2016-08-12 18:15:11 +00:00
|
|
|
params [["_str",""],["_input",""]];
|
|
|
|
if (isLocalized _str) then{
|
|
|
|
[format["%1", format[localize _str, _input]], 5] call Epoch_message;
|
2015-09-14 20:55:36 +00:00
|
|
|
};
|