a3_exile_occupation/scripts/occupationLog.sqf
2016-04-27 16:24:56 +01:00

14 lines
298 B
Plaintext

// Logging function to use either infiSTAR logging function or server RPT
_logDetail = _this select 0;
if(isNil "INFISTARVERSION") then { SC_infiSTAR_log = false; };
if(SC_infiSTAR_log) then
{
['A3_EXILE_OCCUPATION',_logDetail] call FNC_A3_CUSTOMLOG;
}
else
{
diag_log _logDetail;
};