ACE3/addons/common/functions/fnc_serverLog.sqf

9 lines
171 B
Plaintext
Raw Normal View History

2015-03-24 04:18:00 +00:00
// by esteldunedain
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-05-14 18:06:06 +00:00
[_this, QUOTE(FUNC(serverLog)), 1] call FUNC(execRemoteFnc);
};