mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Execute all custom event script assigned to this object on every machine.
|
|
*
|
|
* Argument:
|
|
* 0: Object the eventhandlers are assigned to or namespace (Object or Namespace)
|
|
* 1: Name of the event (String)
|
|
* 2: Arguments passed to the eventhandler script (Array, optional default: [Object the event handlers are assigned to])
|
|
*
|
|
* Return value:
|
|
* None.
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
[_this, QUOTE(FUNC(callCustomEventHandlers)), 2] call FUNC(execRemoteFnc);
|