BIS fnc sideIsEnemy: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with " {{Function|= Comments ____________________________________________________________________________________________ | arma3 |= Game name |1.56|= Game version _______________...")
(see also)
Line 22: Line 22:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[getFriend]], [[BIS_fnc_sideIsFriendly]] |= See also
| [[getFriend]], [[setFriend]], [[BIS_fnc_sideIsFriendly]], [[Side relations]] |= See also


}}
}}
Line 34: Line 34:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Sides|{{uc:areFriendly}}]]
[[Category:Function Group: Sides|{{uc:sideIsEnemy}}]]
[[Category:Functions|{{uc:areFriendly}}]]
[[Category:Functions|{{uc:sideIsEnemy}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:areFriendly}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:sideIsEnemy}}]]

Revision as of 18:29, 26 March 2016


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