reveal: Difference between revisions
Jump to navigation
Jump to search
m (VBS2 scripting category removal) |
m (Text replace - "</dt>" to "") |
||
Line 38: | Line 38: | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on January 15, 2007</dd> | <dd class="notedate">Posted on January 15, 2007</dd> | ||
<dt class="note">'''[[User:Ceeeb|Ceeeb]]''' | <dt class="note">'''[[User:Ceeeb|Ceeeb]]''' | ||
<dd class="note">In '''OFP v1.96''', When a target is revealed to a unit, it's knowsAbout rating is set to 1, unless it was already more than 1 in which case reveal does nothing. See [[knowsAbout]] for more details about knowsAbout ratings and limitations.</dd> | <dd class="note">In '''OFP v1.96''', When a target is revealed to a unit, it's knowsAbout rating is set to 1, unless it was already more than 1 in which case reveal does nothing. See [[knowsAbout]] for more details about knowsAbout ratings and limitations.</dd> | ||
<!-- Note Section END --> | <!-- Note Section END --> |
Revision as of 13:32, 21 October 2011
Description
- Description:
- Reveals a unit to a group or another unit. The knowledge value will be set to the highest level any unit of the revealing side has about the revealed unit. If the revealing side has no knowledge about the revealed unit, the value will be set to 1.
- Groups:
- Uncategorised
Syntax
- Syntax:
- groupName reveal unitName
- Parameters:
- groupName: Object or Group which receives revealing information
- unitName: Object which is revealed
- Return Value:
- Nothing
Examples
- Example 1:
_soldierOne reveal _soldierTwo; //soldierOne received information about soldierTwo
- Example 2:
player reveal cursorTarget; //player receives information about the object below its cursor
Additional Information
- See also:
- nearTargetsknowsAbout
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
Notes
- Posted on January 15, 2007
- Ceeeb
- In OFP v1.96, When a target is revealed to a unit, it's knowsAbout rating is set to 1, unless it was already more than 1 in which case reveal does nothing. See knowsAbout for more details about knowsAbout ratings and limitations.