Hardrock/Sandbox – User
Jump to navigation
Jump to search
Game: Operation Flashpoint
Version: 1.00
Syntax: unit addEventHandler [type, code]
Parameters: unit: Object
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.
Example 1:
Example 2:
See also: removeEventHandler
Attention: Not filled.
Bugs:
mNo edit summary |
mNo edit summary |
||
Line 67: | Line 67: | ||
<h2 class="sectionheader">Dependencies:</h2> | <h2 class="sectionheader">Dependencies:</h2> | ||
<dt>Game:</dt> | <dt>Game:</dt><dd>Operation Flashpoint</dd> | ||
<dd>Operation Flashpoint</dd> | <dt>Version:</dt><dd>1.00</dd> | ||
<dt>Version:</dt> | |||
<dd>1.00</dd> | |||
<h2 class="sectionheader">Description:</h2> | <h2 class="sectionheader">Description:</h2> | ||
Line 79: | Line 76: | ||
<h2 class="sectionheader">Usage:</h2> | <h2 class="sectionheader">Usage:</h2> | ||
<dt>Syntax:</dt> | <dt>Syntax:</dt><dd>unit '''addEventHandler''' [type, code]</dd> | ||
<dd>unit '''addEventHandler''' [type, code]</dd> | <div class="param"><dt>Parameters:</dt><dd>unit: [[Object]] | ||
<div class="param"> | |||
<dt>Parameters:</dt> | |||
<dd>unit: [[Object]] | |||
type: [[String]] - Event handler type | type: [[String]] - Event handler type | ||
Line 90: | Line 83: | ||
code: [[String]] - Code that should be executed once the event occurs</dd> | code: [[String]] - Code that should be executed once the event occurs</dd> | ||
<dt>Return Value:</dt> | <dt>Return Value:</dt><dd>[[Integer]] | ||
<dd>[[Integer]] | |||
<dt>Multiplayer Behaviour:</dt> | The index of the currently added event handler is returned. Indices start at 0 for each unit and increment with each added event handler.</dd></div> | ||
<dd>Unknown.</dd> | <dt>Multiplayer Behaviour:</dt><dd>Unknown.</dd> | ||
<h2 class="sectionheader">Examples:</h2> | <h2 class="sectionheader">Examples:</h2> | ||
<dt>Example 1:</dt> | <dt>Example 1:</dt><dd><code>Code 1</code></dd> | ||
<dd><code>Code 1</code></dd> | <dt>Example 2:</dt><dd><code>Code 2</code></dd> | ||
<dt>Example 2:</dt> | |||
<dd><code>Code 2</code></dd> | |||
<h2 class="sectionheader">Additional Information:</h2> | <h2 class="sectionheader">Additional Information:</h2> | ||
<dt>See also:</dt> | <dt>See also:</dt><dd>'''[[removeEventHandler]]'''</dd> | ||
<dd>'''[[removeEventHandler]]'''</dd> | <dt>Attention:</dt><dd>Not filled.</dd> | ||
<dt>Bugs:</dt><dd> | |||
<dt>Attention:</dt> | |||
<dd>Not filled.</dd> | |||
<dt>Bugs:</dt> | |||
<dd> | |||
* First | * First | ||
* Second | * Second |
Revision as of 01:28, 27 July 2006
Option 1:
Dependencies | ||
Game: | Operation Flashpoint | |
---|---|---|
Game 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 not known. | |
Examples | ||
Example 1: | Code 1
| |
Example 2: | Code 2
| |
Additional Information | ||
See also: | removeEventHandler | |
Attention: | This and that happens then and then. | |
Bugs: |
|
Option 2:
Dependencies:
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:
type: String - Event handler type
code: String - Code that should be executed once the event occursExamples:
Code 1
Code 2
Additional Information:
- First
- Second
- Third