BIS fnc tridentExecute: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (pf)
m (Text replacement - "\[\[Category\:Function Group\: Misc(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "")
Line 46: Line 46:


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

Revision as of 09:55, 10 October 2020

Hover & click on the images for description

Description

Description:
Execute a code based on Trident relationship.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[side_1,side_2,codeFriendly,codeEnemy] call BIS_fnc_tridentExecute
Parameters:
side_1: Side
side_2: Side
codeFriendly: Code - Code executed when sides are friendly
  • Arguments passed to the code are
    • 0: Side - Side with higher score (when the score is even, side from param 0 is used)
    • 1: Side - Side with lower score (when the score is even, side from param 1 is used)
    • 2: Boolean - True when the sides are allied
codeEnemy: Code - Code executed when sides are enemy
Return Value:
Boolean - True when the sides are allied

Examples

Example 1:
[ west, east, {params ["_higherScore","_lowerScore","_areAllied"]}] call BIS_fnc_tridentExecute;

Additional Information

See also:
BIS_fnc_tridentGetRelationshipBIS_fnc_tridentHandleDamageBIS_fnc_tridentSetRelationship

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