getEventHandlerInfo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
Line 33: Line 33:
* total: [[Number]] - total number of event handlers added to the same event
* total: [[Number]] - total number of event handlers added to the same event


|x1= <sqf>private _info = player getEventHandlerInfo ["MPKilled", 1]; // object EH</sqf>
|x1= <sqf>private _info = player getEventHandlerInfo ["MPKilled", 1]; // object EH</sqf>
|x2= <sqf>private _info = getEventHandlerInfo ["EachFrame", 0]; // mission EH</sqf>
 
|x3= <sqf>private _info = _bullet getEventHandlerInfo ["Deflected", 0]; // projectile EH</sqf>
|x2= <sqf>private _info = getEventHandlerInfo ["EachFrame", 0]; // mission EH</sqf>
|x4= <sqf>private _info = _group getEventHandlerInfo ["EnemyDetected", 1]; // group EH</sqf>
 
|x5= <sqf>private _info = _control getEventHandlerInfo ["ButtonClick", 1]; // control (UI) EH</sqf>
|x3= <sqf>private _info = _bullet getEventHandlerInfo ["Deflected", 0]; // projectile EH</sqf>
 
|x4= <sqf>private _info = _group getEventHandlerInfo ["EnemyDetected", 1]; // group EH</sqf>
 
|x5= <sqf>private _info = _control getEventHandlerInfo ["ButtonClick", 1]; // control (UI) EH</sqf>


|seealso= [[addEventHandler]] [[ctrlAddEventHandler]] [[displayAddEventHandler]] [[addMPEventHandler]] [[addMissionEventHandler]] [[addMusicEventHandler]]
|seealso= [[addEventHandler]] [[ctrlAddEventHandler]] [[displayAddEventHandler]] [[addMPEventHandler]] [[addMissionEventHandler]] [[addMusicEventHandler]]
}}
}}

Revision as of 19:22, 18 July 2022

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's information.
Groups:
Event Handlers

Syntax

Syntax:
entity getEventHandlerInfo [type, id]
Parameters:
entity: Object, Group, Control or Display - entity to which event handler is assigned
type: String - event handler name
id: Number - event handler id returned by addEventHandler, ctrlAddEventHandler, displayAddEventHandler, or addMPEventHandler
Return Value:
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

Alternative Syntax

Syntax:
getEventHandlerInfo [type, id]
Parameters:
type: String - event handler name
id: Number - event handler id returned by addMissionEventHandler or addMusicEventHandler
Return Value:
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

Examples

Example 1:
private _info = player getEventHandlerInfo ["MPKilled", 1]; // object EH
Example 2:
private _info = getEventHandlerInfo ["EachFrame", 0]; // mission EH
Example 3:
private _info = _bullet getEventHandlerInfo ["Deflected", 0]; // projectile EH
Example 4:
private _info = _group getEventHandlerInfo ["EnemyDetected", 1]; // group EH
Example 5:
private _info = _control getEventHandlerInfo ["ButtonClick", 1]; // control (UI) EH

Additional Information

See also:
addEventHandler ctrlAddEventHandler displayAddEventHandler addMPEventHandler 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