ACE3/addons/common/functions/fnc_serverLog.sqf

20 lines
249 B
Plaintext
Raw Normal View History

2015-09-19 18:34:07 +00:00
/*
* Author: esteldunedain
* ?
*
* Arguments:
* ?
*
* Return Value:
* None
*
* Public: no
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
if (isServer) then {
2015-05-14 18:06:06 +00:00
diag_log _this;
} else {
2015-09-19 18:34:07 +00:00
[_this, QFUNC(serverLog), 1] call FUNC(execRemoteFnc);
};