getFriend: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[cC]ommand[_ ][gG]roup:[_ ][^|]+\|\{*uc:{{PAGENAME}*]\]" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| arma2 |Game name=
| arma2
|1.00|Game version=
|1.00
|arg= global|Multiplayer Arguments=
|arg= global


|gr1= Sides |GROUP1=
|gr1= Sides


| Returns if sides are friendly or hostile. For a value smaller than 0.6 it results in being enemy, otherwise it is friendly. See also [[Side relations]].|DESCRIPTION=
| Returns if sides are friendly or hostile. For a value smaller than 0.6 it results in being enemy, otherwise it is friendly. See also [[Side relations]].


| side1 '''getFriend''' side2 |SYNTAX=
| side1 '''getFriend''' side2


|p1= side1: [[Side]] |PARAMETER1=
|p1= side1: [[Side]]


|p2= side2: [[Side]] |PARAMETER2=
|p2= side2: [[Side]]


|p3= |PARAMETER3=  
|p3=


| [[Number]] - Decimal value between 0.0 to 1.0 |RETURNVALUE=
| [[Number]] - Decimal value between 0.0 to 1.0




|x1= <code>value <nowiki>=</nowiki> [[west]] [[getFriend]] [[east]];</code>|EXAMPLE1=
|x1= <code>value <nowiki>=</nowiki> [[west]] [[getFriend]] [[east]];</code>


|x2= <code>_isEnemy <nowiki>=</nowiki> [[side]] _killer [[getFriend]] [[side]] _victim < 0.6;</code>|EXAMPLE2=
|x2= <code>_isEnemy <nowiki>=</nowiki> [[side]] _killer [[getFriend]] [[side]] _victim < 0.6;</code>




| [[setFriend]], [[BIS_fnc_sideIsFriendly]], [[BIS_fnc_sideIsEnemy]], [[Side relations]] |SEEALSO=
| [[setFriend]], [[BIS_fnc_sideIsFriendly]], [[BIS_fnc_sideIsEnemy]], [[Side relations]]


|  |MPBEHAVIOUR=  
|  |MPBEHAVIOUR=  

Revision as of 01:37, 18 January 2021

Hover & click on the images for description

Description

Description:
Returns if sides are friendly or hostile. For a value smaller than 0.6 it results in being enemy, otherwise it is friendly. See also Side relations.
Groups:
Sides

Syntax

Syntax:
side1 getFriend side2
Parameters:
side1: Side
side2: Side
Return Value:
Number - Decimal value between 0.0 to 1.0

Examples

Example 1:
value = west getFriend east;
Example 2:
_isEnemy = side _killer getFriend side _victim < 0.6;

Additional Information

See also:
setFriendBIS_fnc_sideIsFriendlyBIS_fnc_sideIsEnemySide relations

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