Hardrock/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
Line 37: Line 37:
<dl>
<dl>
<dt>See also:</dt><dd>'''[[removeEventHandler]]'''</dd>
<dt>See also:</dt><dd>'''[[removeEventHandler]]'''</dd>
<dt>Notes:</dt><dd class="note">None yet.</dd>
<dt>Notes:</dt><dd class="note">Note 1</dd><dd class="note">Note 2</dd>
</dl>
</dl>



Revision as of 03:17, 27 July 2006


Dependencies

Game:
Operation Flashpoint
Version:
1.00

Description

Description:
Adds an event handler to a given unit. For more information about event handlers and their types check the scripting topic Event Handlers in this reference. You may add as many event handlers of any type as you like to every unit, if you add an event handler of type "killed" and there already exists one, the old one doesn't get overwritten. Use removeEventHandler to delete event handlers.

Usage

Syntax:
unit addEventHandler [type, code]
Parameters:
unit: Object
type: String - Event handler type
code: String - Code that should be executed once the event occurs
Return Value:
Integer - The index of the currently added event handler is returned. Indices start at 0 for each unit and increment with each added event handler.
Multiplayer:
Behaviour unknown.

Examples

Example 1:
Code 1
Example 2:
Code 2

Additional Information

See also:
removeEventHandler
Notes:
Note 1
Note 2