removeAllEventHandlers: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "|= Game name" to "|Game name=")
(17 intermediate revisions by 12 users not shown)
Line 3: Line 3:
[[Category:Scripting Commands ArmA|REMOVEALLEVENTHANDLERS]]
[[Category:Scripting Commands ArmA|REMOVEALLEVENTHANDLERS]]


{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| ofpr |= Game name
| ofpr |Game name=


|1.85|= Game version
|1.85|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Removes all event handlers of given type that were added by [[addEventHandler]]. |= Description
| Removes all event handlers of given type that were added by [[addEventHandler]]. Since VBS2 v1.24 can be applied on individual weapon rounds. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| object '''removeAllEventHandlers''' handlerType |= Syntax
| objectName '''removeAllEventHandlers''' handlerType |SYNTAX=


|p1= object: [[Object]] |= Parameter 1
|p1= objectName: [[Object]] |PARAMETER1=
|p2= handlerType: [[String]] - See [[Event Handlers]] for list


|p2= handlerType: [[String]] |= Parameter 2
| [[Nothing]] |RETURNVALUE=
 
| [[Nothing]] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>player removeAllEventHandlers "killed"</pre> |= Example 1
|x1= <code>[[player]] [[removeAllEventHandlers]] "killed";</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[:Category:Event Handlers|EventHandlers list]], [[removeEventHandler]], [[addEventHandler]] |SEEALSO=


}}
}}
Line 38: Line 37:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 15:21, 1 September 2019


Hover & click on the images for description

Description

Description:
Removes all event handlers of given type that were added by addEventHandler. Since VBS2 v1.24 can be applied on individual weapon rounds.
Groups:
Uncategorised

Syntax

Syntax:
objectName removeAllEventHandlers handlerType
Parameters:
objectName: Object
handlerType: String - See Event Handlers for list
Return Value:
Nothing

Examples

Example 1:
player removeAllEventHandlers "killed";

Additional Information

See also:
EventHandlers listremoveEventHandleraddEventHandler

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

Bottom Section