Epoch/Sources/epoch_code/compile/EPOCH_handleServerMessage.sqf
2016-06-13 11:54:19 -05:00

22 lines
657 B
Plaintext

/*
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:
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_handleServerMessage.sqf
Example:
[_this select 1, _this select 2] remoteExec ['EPOCH_handleServerMessage',_x];
*/
if (isLocalized (_this select 0)) then{
[format["<t size = ""1.6"" color = ""#99ffffff"">%1</t>", format[localize (_this select 0), _this select 1]], 5] call Epoch_dynamicText;
};