this: Difference between revisions
Jump to navigation
Jump to search
(reformatted and expanded) |
(in dialogs) |
||
Line 3: | Line 3: | ||
=_this= | =_this= | ||
*'''In Scripts/Functions''': The given arguments that were passed by a [[call]], [[exec]], [[execVM]] or [[spawn]].<br>For the arguments in scripts executed by mission-made actions check the article [[addAction]]. | |||
*'''In Dialogs''': An array with the current control as its first (and only) element (only available during runtime). | |||
=this= | =this= | ||
*'''In | *'''In Addons' config files''' (e.g. UserActions, onInit, etc.): The object the entry belongs to. | ||
*'''In | *'''In Dialogs''': The player unit that activated control (e.g. via mouseEnter). [[false]] if non-activated. | ||
*'''In Object's "Init" line:''' The object the init line belongs to. | |||
*'''In Triggers''' | *'''In Triggers''' | ||
**''"Condition" line'': The [[Boolean]] return value of the trigger's conditions (e.g. "East Not Present" etc). | **''"Condition" line'': The [[Boolean]] return value of the trigger's conditions (e.g. "East Not Present" etc). |
Revision as of 20:17, 10 November 2008
_this
- In Scripts/Functions: The given arguments that were passed by a call, exec, execVM or spawn.
For the arguments in scripts executed by mission-made actions check the article addAction. - In Dialogs: An array with the current control as its first (and only) element (only available during runtime).
this
- In Addons' config files (e.g. UserActions, onInit, etc.): The object the entry belongs to.
- In Dialogs: The player unit that activated control (e.g. via mouseEnter). false if non-activated.
- In Object's "Init" line: The object the init line belongs to.
- In Triggers
- "Condition" line: The Boolean return value of the trigger's conditions (e.g. "East Not Present" etc).
- "On Activation/Deactivation" line: One object that currently fulfills the trigger's condition (if several objects fulfilling the trigger, the object returned is normally the most recently edited one).
- In Waypoints
- "Condition" or "On Activation/Deactivation" line: The group leader that completed the respective waypoint.
thislist
- In Triggers ("Condition" or "On Activation/Deactivation" line): An Array of objects that are currently fulfilling the trigger's condition (same as the what is returned by the list command).
- In Waypoints ("Condition" or "On Activation/Deactivation" line): An Array containing all group members that completed the respective waypoint.