a3_exile_occupation/scripts/occupationLog.sqf

17 lines
334 B
Plaintext
Raw Normal View History

2016-04-02 19:06:53 +00:00
// Logging function to use either infiSTAR logging function or server RPT
_logDetail = _this select 0;
2016-04-27 15:06:04 +00:00
infiSTARinstalled = true;
if(isNil "INFISTARVERSION") then { SC_infiSTAR_log = false; };
if(SC_infiSTAR_log) then
2016-04-02 19:06:53 +00:00
{
['A3_EXILE_OCCUPATION',_logDetail] call FNC_A3_CUSTOMLOG;
}
else
{
diag_log _logDetail;
2016-04-27 15:06:04 +00:00
};
infiSTAR