removeMissionEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Add eL)
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 9: Line 8:


|gr1= Event Handlers |GROUP1=
|gr1= Event Handlers |GROUP1=
____________________________________________________________________________________________


| Removes mission event handler added by [[addMissionEventHandler]]. |DESCRIPTION=
| Removes mission event handler added by [[addMissionEventHandler]]. |DESCRIPTION=
____________________________________________________________________________________________


| [[removeMissionEventHandler]] [type, index] |SYNTAX=
| [[removeMissionEventHandler]] [type, index] |SYNTAX=
Line 30: Line 27:
};
};
[[removeMissionEventHandler]] ["Loaded", handler2]; {{cc|Remove the third index under type "Loaded"}}</code>|EXAMPLE2=
[[removeMissionEventHandler]] ["Loaded", handler2]; {{cc|Remove the third index under type "Loaded"}}</code>|EXAMPLE2=
____________________________________________________________________________________________


| [[addMissionEventHandler]], [[removeAllMissionEventHandlers]] |SEEALSO=
| [[addMissionEventHandler]], [[removeAllMissionEventHandlers]] |SEEALSO=

Revision as of 03:13, 17 January 2021

Hover & click on the images for description

Description

Description:
Removes mission event handler added by addMissionEventHandler.
Groups:
Event Handlers

Syntax

Syntax:
removeMissionEventHandler [type, index]
Parameters:
type: String
index: Number - Index is returned by addMissionEventHandler.
Return Value:
Nothing

Examples

Example 1:
private _eventHandlerId = addMissionEventHandler ["Ended", { diag_log "mission complete"; }]; // ... removeMissionEventHandler ["Ended", _eventHandlerId];
Example 2:
for "_i" from 0 to 4 do { missionNamespace setVariable [format ["handler%1",_i], addMissionEventHandler ["Loaded","hint ""_i"";"]]; }; removeMissionEventHandler ["Loaded", handler2]; // Remove the third index under type "Loaded"

Additional Information

See also:
addMissionEventHandlerremoveAllMissionEventHandlers

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


Notes

Posted on August 6, 2015 - 22:02 (UTC)
SilentSpike
As of Arma 3 version 1.38 you can safely remove mission event handlers without worrying about decrementing higher indices.
EDIT: this command used to decrement other EH ids above the deleted one (e.g EH 0,1,2,3, delete EH 1, EH would be 0,1,2 now and not 0,2,3) - Lou Montana (talk) 19:29, 25 June 2020 (CEST)

Bottom Section