getEventHandlerInfo

From Bohemia Interactive Community
Revision as of 17:13, 7 July 2022 by Killzone Kid (talk | contribs)
Jump to navigation Jump to search
Hover & click on the images for description
Only available in Development branch(es) until its release with Arma 3 patch v2.10.

Description

Description:
Queries given event handler and returns Array in format [exists, isLast, total] or empty array [], where:
  • exists: Boolean - event handler exists
  • isLast: Boolean - will be executed last (relevant if last event handler modifies default engine behaviour)
  • total: Number - total number of event handlers added to the same event
Groups:
Event Handlers

Syntax

Syntax:
object getEventHandlerInfo [type, id]
Parameters:
object: Object - entity to which event handler is assigned
type: String - event handler name
id: Number - event handler id returned by addEventHandler or addMPEventHandler
Return Value:
Array - see description

Alternative Syntax

Syntax:
object getEventHandlerInfo [type, id]
Parameters:
object: Object - entity to which event handler is assigned
type: String - event handler name
id: Number - event handler id returned by addMissionEventHandler or addMusicEventHandler
Return Value:
Array - see description

Examples

Example 1:
_info = player getEventHandlerInfo ["MPKilled", 1];
Example 2:
_info = getEventHandlerInfo ["EachFrame", 0];

Additional Information

See also:
addMPEventHandler addEventHandler addMissionEventHandler addMusicEventHandler

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note