BIS fnc sideIsEnemy: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <nowiki>[</nowiki>" to " [<nowiki/>")
mNo edit summary
Line 14: Line 14:


|p1= sideA: [[Side]] |PARAMETER1=
|p1= sideA: [[Side]] |PARAMETER1=
|p2= sideB: [[Side]] |=
|p2= sideB: [[Side]] |PARAMETER2=


| [[Boolean]] - True if side B is enemy to side A. |RETURNVALUE=
| [[Boolean]] - True if side B is enemy to side A. |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>_isEnemy = [<nowiki/>[[west]], [[east]]] [[call]] [[BIS_fnc_sideIsEnemy]]; //Checks if EAST is enemy to WEST. </code> |=  
|x1= <code>_isEnemy = [<nowiki/>[[west]], [[east]]] [[call]] [[BIS_fnc_sideIsEnemy]]; //Checks if EAST is enemy to WEST. </code> |EXAMPLE1=  
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 22:51, 24 September 2020


Hover & click on the images for description

Description

Description:
Determines if side B is enemy to side A the way the game engine does it. The relationship table can be found here: Side relations.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[sideA, sideB] call BIS_fnc_sideIsEnemy;
Parameters:
sideA: Side
sideB: Side
Return Value:
Boolean - True if side B is enemy to side A.

Examples

Example 1:
_isEnemy = [west, east] call BIS_fnc_sideIsEnemy; //Checks if EAST is enemy to WEST.

Additional Information

See also:
getFriendsetFriendBIS_fnc_sideIsFriendlySide 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