Hardrock/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<span style="float:right; margin-top:-20px">[[Image:ofp_1.00.gif]]</span>
{{Command|=
{{Command|=
____________________________________________________________________________________________
____________________________________________________________________________________________
Line 7: Line 5:


|1.00|=
|1.00|=
|arg= global |=
|eff= local |=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Adds an event handler to a given unit. For more information about event handlers and their  
| Make a unit to perform an action. Use the List of Actions for reference about the available actions and their syntax. |=
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. |=
____________________________________________________________________________________________
____________________________________________________________________________________________


| object '''addEventHandler''' [type, code] |=
| '''action ''' |=


|p1= object: [[Object]] |=
|p1= unit: [[Object]] |=


|p2= type: [[String]] - Explanation |=
|p2= action: [[Array]] |=


|p3= code: [[String]] - Explanation |=
| [[Nothing]] |=
 
| [[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. |=
 
|mp= Multiplayer behaviour . . . |=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
| |=
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam
et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
Lorem ipsum dolor sit amet.
 
<code>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</code>
 
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |=
____________________________________________________________________________________________
 
|x2= Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam
et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
Lorem ipsum dolor sit amet. |=
____________________________________________________________________________________________
 
| [[removeEventHandler]] |=


}}
}}
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on 28 July 2006, 13:12</dd>
<dt class="note">'''[[User:Hoz|hoz]]'''</dt><dd class="note">
I found out that you have to take care of several things when using this command on a dedicated server. ...
</dd>
<dd class="notedate">Posted on 28 July 2006, 13:13</dd>
<dt class="note">'''[[User:Hardrock|hardrock]]'''</dt><dd class="note">
I guess that one with the usernames and time works now.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</dd>


<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>
== Source ==
<pre>{{Command|=
____________________________________________________________________________________________
| addEventHandler |=
| ofp |=
|1.00|=
|arg= global |=
|eff= local |=
____________________________________________________________________________________________
| 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. |=
____________________________________________________________________________________________
| object '''addEventHandler''' [type, code] |=
|p1= object: [[Object]] |=
|p2= type: [[String]] - Explanation |=
|p3= code: [[String]] - Explanation |=
| [[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. |=
|mp= Multiplayer behaviour . . . |=
____________________________________________________________________________________________
|x1= Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam
et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
Lorem ipsum dolor sit amet.
<code>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</code>
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |=
____________________________________________________________________________________________
|x2= Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam
et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
Lorem ipsum dolor sit amet. |=
____________________________________________________________________________________________
| [[removeEventHandler]] |=
}}
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl></pre>
[[Category:Sandbox]]

Revision as of 02:02, 1 August 2006

Hover & click on the images for description

Description

Description:
Make a unit to perform an action. Use the List of Actions for reference about the available actions and their syntax.
Groups:
Uncategorised

Syntax

Syntax:
action
Parameters:
unit: Object
action: Array
Return Value:
Nothing

Examples

Examples:
Example needed

Additional Information

See also:
See also needed

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