removeEventHandler: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"']+)<\/tt>" to "{{hl|$1}}") |
m (Updated Example with _thisEvent) |
||
Line 22: | Line 22: | ||
|version7= 0.50 | |version7= 0.50 | ||
| | |gr1= Event Handlers | ||
|descr= Removes a given Event Handler that was added with [[addEventHandler]]. | |descr= Removes a given Event Handler that was added with [[addEventHandler]]. | ||
Line 30: | Line 30: | ||
|p1= object: [[Object]] | |p1= object: [[Object]] | ||
|p2= type: [[String]] - | |p2= type: [[String]] - see [[:Category:Event Handlers|Event Handlers]] for the full list of available options | ||
|p3= index: [[Number]] - | |p3= index: [[Number]] - the value originally returned by [[addEventHandler]] | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= < | |x1= <sqf>player removeEventHandler ["Killed", 0];</sqf> | ||
|x2= | |x2= The [[Magic Variables]] <var>_thisEvent</var> and <var>_thisEventHandler</var> can be used to easily remove an Event Handler: | ||
< | <sqf>player addEventHandler ["FiredNear", { | ||
{ | systemChat "This Event Handler is now removing itself!"; | ||
player removeEventHandler [_thisEvent, _thisEventHandler]; | |||
}];</sqf> | |||
}];</ | |||
|seealso= [[addEventHandler]] [[ | |seealso= [[addEventHandler]] [[removeAllEventHandlers]] [[removeMPEventHandler]] [[removeMissionEventHandler]] [[:Category:Event Handlers|Event Handlers]] | ||
}} | }} |
Revision as of 13:40, 27 March 2022
Description
- Description:
- Removes a given Event Handler that was added with addEventHandler.
- Groups:
- Event Handlers
Syntax
- Syntax:
- object removeEventHandler [type, index]
- Parameters:
- object: Object
- type: String - see Event Handlers for the full list of available options
- index: Number - the value originally returned by addEventHandler
- Return Value:
- Nothing
Examples
- Example 1:
- Example 2:
- The Magic Variables _thisEvent and _thisEventHandler can be used to easily remove an Event Handler:
player addEventHandler ["FiredNear", { systemChat "This Event Handler is now removing itself!"; player removeEventHandler [_thisEvent, _thisEventHandler]; }];
Additional Information
- See also:
- addEventHandler removeAllEventHandlers removeMPEventHandler removeMissionEventHandler Event Handlers
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
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.85
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Event Handlers