addEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:


[[Number]]
[[Number]]
'''Compatibility:'''
Added in version '''1.85'''


'''Description:'''
'''Description:'''

Revision as of 01:50, 17 April 2006

back to COMREF


object addEventHandler handler


Operand types:

object: Object

handler: Array

Type of returned value:

Number

Compatibility:

Added in version 1.85

Description:

Format of handler is [type,command].

Check scripting topic Event handlers for more information.

Index of currently added handler is returned.


Example:

player addEventHandler ["killed",{_this exec "playerKilled.sqs"}]