removeMPEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:ArmA 2 OA: New Scripting Commands List" to "[[Category:Arma 2: Operation Arrowhead: New Scripting Commands List")
m (Some wiki formatting)
 
(40 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma2oa |Game name=
|game1= arma2oa
|version1= 1.55


|1.55|Game version=
|game2= tkoh
|arg= global |Multiplayer Arguments=
|version2= 1.00


|eff= global |Multiplayer Effects=
|game3= arma3
____________________________________________________________________________________________
|version3= 0.50


| Removes MP event handler added by [[addMPEventHandler]].|DESCRIPTION=
|gr1= Multiplayer
____________________________________________________________________________________________


| unitName '''removeMPEventHandler''' [event, index] |SYNTAX=
|gr2= Event Handlers


|p1= unitName: [[Object]] |Parameter1=
|arg= global


|p2= event: [[String]]|Parameter2=
|eff= global


|p3= index: [[Number]] - index returned by [[addMPEventHandler]]|=
|descr= Removes MP event handler added by [[addMPEventHandler]].


| [[Nothing]] |RETURNVALUE=
|s1= unitName [[removeMPEventHandler]] [event, index]
____________________________________________________________________________________________


|x1= <code>player '''removeMPEventHandler''' ["MPKilled", 0]; </code> |=
|p1= unitName: [[Object]]
____________________________________________________________________________________________


| [[:Category:Event Handlers|EventHandlers list]], [[addMPEventHandler]], [[removeAllMPEventHandlers]] |SEEALSO=
|p2= event: [[String]]
}}


<h3 style="display:none">Notes</h3>
|p3= index: [[Number]] - index returned by [[addMPEventHandler]]
<dl class="command_description">
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on 25 July, 2011
|r1= [[Nothing]]
<dt class="note">[[User:kju|kju]]
<dd class="note">At least for MPKilled it needs to be executed where the target unit is local. The effect (the removal) is global.


|x1= <sqf>player removeMPEventHandler ["MPKilled", 0];</sqf>


<!-- Note Section END -->
|seealso= [[:Category:Event Handlers|EventHandlers list]] [[addMPEventHandler]] [[removeAllMPEventHandlers]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
 
|user= .kju
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
|timestamp= 20110725194100
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
|text= At least for MPKilled it needs to be executed where the target unit is local. The effect (the removal) is global.
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 2: Operation Arrowhead: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Multiplayer|{{uc:{{PAGENAME}}}}]]

Latest revision as of 21:34, 3 May 2024

Hover & click on the images for description

Description

Description:
Removes MP event handler added by addMPEventHandler.
Groups:
MultiplayerEvent Handlers

Syntax

Syntax:
unitName removeMPEventHandler [event, index]
Parameters:
unitName: Object
event: String
index: Number - index returned by addMPEventHandler
Return Value:
Nothing

Examples

Example 1:
player removeMPEventHandler ["MPKilled", 0];

Additional Information

See also:
EventHandlers list addMPEventHandler removeAllMPEventHandlers

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
.kju - c
Posted on Jul 25, 2011 - 19:41 (UTC)
At least for MPKilled it needs to be executed where the target unit is local. The effect (the removal) is global.