mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
438 B
Plaintext
27 lines
438 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* TODO
|
|
*
|
|
* Arguments:
|
|
* 0: caller <OBJECT>
|
|
* 1: target <OBJECT>
|
|
* 2: errorMsg <STRING>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* eventTargetFinish
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_3(_caller,_target,_errorMsg);
|
|
|
|
|
|
if (_errorMsg != "") then {
|
|
systemChat _errorMsg;
|
|
["DisarmDebugCallback", [_caller], [_caller, _target, _errorMsg]] call EFUNC(common,targetEvent);
|
|
};
|