forgetTarget: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)]]" to "{{GameCategory|arma3|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 9: Line 8:


|gr2= Groups |GROUP2=
|gr2= Groups |GROUP2=
____________________________________________________________________________________________


| Resets the info a group has about a target, forcing [[knowsAbout]] value to 0. |DESCRIPTION=
| Resets the info a group has about a target, forcing [[knowsAbout]] value to 0. |DESCRIPTION=
____________________________________________________________________________________________


| group '''forgetTarget''' target |SYNTAX=
| group '''forgetTarget''' target |SYNTAX=
Line 23: Line 20:


|mp= |=
|mp= |=
____________________________________________________________________________________________
   
   
|x1= <code>soldier1 [[forgetTarget]] soldier2;</code> |EXAMPLE1=
|x1= <code>soldier1 [[forgetTarget]] soldier2;</code> |EXAMPLE1=
|x2= Give enemyBob some amnesia:<code>[[onEachFrame]] { enemyBob [[forgetTarget]] [[player]] };</code> |EXAMPLE2=
|x2= Give enemyBob some amnesia:<code>[[onEachFrame]] { enemyBob [[forgetTarget]] [[player]] };</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[knowsAbout]], [[targetsQuery]], [[targetsAggregate]], [[nearTargets]], [[reveal]], [[getHideFrom]], [[targetKnowledge]] |SEEALSO=
| [[knowsAbout]], [[targetsQuery]], [[targetsAggregate]], [[nearTargets]], [[reveal]], [[getHideFrom]], [[targetKnowledge]] |SEEALSO=

Revision as of 02:21, 17 January 2021

Hover & click on the images for description

Description

Description:
Resets the info a group has about a target, forcing knowsAbout value to 0.
Groups:
Unit ControlGroups

Syntax

Syntax:
group forgetTarget target
Parameters:
group: Group or Object - group itself or unit in a group
target: Object - group target
Return Value:
Nothing

Examples

Example 1:
soldier1 forgetTarget soldier2;
Example 2:
Give enemyBob some amnesia:onEachFrame { enemyBob forgetTarget player };

Additional Information

See also:
knowsAbouttargetsQuerytargetsAggregatenearTargetsrevealgetHideFromtargetKnowledge

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

Bottom Section