addMPEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(definitely returns number)
(global)
Line 5: Line 5:


|1.55|= Game version
|1.55|= Game version
|arg= global |= Arguments in MP
|eff= global |= Effects in MP
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 14:23, 8 May 2015

Hover & click on the images for description

Description

Description:
The format of handler is [type,command]. Check scripting topic Event handlers for more information. The index of the current handler is returned.
Groups:
Uncategorised

Syntax

Syntax:
unitName addMPEventHandler [type, command];
Parameters:
unitName: Object - object to monitor
type: String - event handler name
command: String or Code - code to execute
Return Value:
Number

Examples

Example 1:
_index = player addMPEventHandler ["mpkilled", {Null = _this execVM "playerkilled.sqf";}];

Additional Information

See also:
EventHandlers listremoveMPEventHandlerremoveAllMPEventHandlers

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