Hardrock/Sandbox – User
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 65: | Line 65: | ||
Option 2: | Option 2: | ||
< | <div class="command_description"> | ||
== Dependencies == | |||
<dl> | <dl> | ||
<dt>Game:</dt><dd>Operation Flashpoint</dd> | <dt>Game:</dt><dd>Operation Flashpoint</dd> | ||
Line 71: | Line 73: | ||
</dl> | </dl> | ||
== Description == | |||
<dl> | <dl> | ||
<dt>Description:</dt><dd>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.</dd> | <dt>Description:</dt><dd>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.</dd> | ||
</dl> | </dl> | ||
== Usage == | |||
<dl> | <dl> | ||
<dt>Syntax:</dt><dd>unit '''addEventHandler''' [type, code]</dd> | <dt>Syntax:</dt><dd>unit '''addEventHandler''' [type, code]</dd> | ||
Line 85: | Line 87: | ||
</dl> | </dl> | ||
== Examples == | |||
<dl> | <dl> | ||
<dt>Example 1:</dt><dd><code>Code 1</code></dd> | <dt>Example 1:</dt><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> | ||
</dl> | </dl> | ||
== Additional Information == | |||
<dl> | <dl> | ||
<dt>See also:</dt><dd>'''[[removeEventHandler]]'''</dd> | <dt>See also:</dt><dd>'''[[removeEventHandler]]'''</dd> | ||
Line 100: | Line 103: | ||
</dd> | </dd> | ||
</dl> | </dl> | ||
</div> | |||
[[Category:Sandbox]] | [[Category:Sandbox]] |
Revision as of 01:59, 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
- 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
- Attention:
- Not filled.
- Bugs:
-
- First
- Second
- Third