Command: allEventHandlers
Description: Returns all added event handlers in Code format.
Syntax: allEventHandlers type
- type: String
Return Value: ARRAY of Code.
Examples:
- allEventHandlers "Killed"
[{ deleteVehicle _this#0; }]
- allEventHandlers "Put"
[{ systemChat "Event: Put"; }, { systemChat "Event: Put 2"; }]
Command: allMissionEventHandlers
Description: Returns all added mission event handlers in Code format.
Syntax: allMissionEventHandlers type
- type: String
Return Value: ARRAY of Code.
Examples:
- allMissionEventHandlers "EachFrame"
[{ hint 'EachFrame'; }]