setFriend: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
(Some wiki formatting)
Line 25: Line 25:
|gr1= Sides
|gr1= Sides


|descr= Sets how friendly side1 is with side2. For a value smaller than 0.6 it results in being enemy, otherwise it is friendly.
|descr= Sets how friendly a side is with another. The friendliness is set for one side, not for the other. See also [[Side relations]].


Intended to be used on mission start. Changing value during mission can cause unexpected errors in AI behavior. See also [[Side relations]].
{{Feature|arma3|Since {{arma3}} this command can be used mid-mission. Before that it was intended to be used on mission start only, as changing value during mission could cause unexpected errors in AI behaviour (especially for groups already knowing about "switched to enemy" groups).
}}


|s1= side1 [[setFriend]] [side2, value]
|s1= side1 [[setFriend]] [side2, value]
Line 35: Line 36:
|p2= side2: [[Side]]
|p2= side2: [[Side]]


|p3= value: [[Number]]
|p3= value: [[Number]] - a value smaller than 0.6 results in being enemy, otherwise ''side1'' is friendly to ''side2''


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>[[west]] [[setFriend]] [<nowiki/>[[resistance]], 0];</code>
|x1= <code>[[west]] [[setFriend]] [<nowiki/>[[resistance]], 0]; {{cc|west will not like resistance from now on}}</code>


|seealso= [[getFriend]], [[BIS_fnc_sideIsFriendly]], [[BIS_fnc_sideIsEnemy]], [[Side relations]]
|x2= <code>[[resistance]] [[setFriend]] [<nowiki/>[[east]], 0];
}}
[[east]] [[setFriend]] [<nowiki/>[[resistance]], 0]; {{cc|both are enemies}}


<dl class="command_description">
[[resistance]] [[setFriend]] [<nowiki/>[[east]], 1];
[[east]] [[setFriend]] [<nowiki/>[[resistance]], 0]; {{cc|resistance likes east, but east does not like resistance}}</code>


<dt></dt>
|x3= <code>[[west]] [[setFriend]] [<nowiki/>[[west]], 0]; {{cc|free for all deathmatch! works with [[west]]/[[blufor]], [[east]]/[[opfor]], [[independent]]/[[resistance]] and [[civilian]]}}</code>
<dd class="notedate">Posted on  18:49, 28 December 2006</dd>
<dt class="note">[[User:Kronzky|Kronzky]]</dt>
<dd class="note">This command might be buggy in ArmA (or the description regarding enemy status is wrong). See {{ExternalLink|link= http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?s=81449b5fff69fec63836f0857d2a08dc;act=ST;f=71;t=56505|text= this}} discussion.
</dd>


<dt><dt>
|seealso= [[getFriend]], [[BIS_fnc_sideIsFriendly]], [[BIS_fnc_sideIsEnemy]], [[Side relations]]
<dd class="notedate">Posted on  11:25, 30 November 2007</dd>
}}
<dt class="note">[[User:Ceeeb|Ceeeb]]</dt>
<dd class="note"> Setting the [[civilian]] [[side]] to be the enemy of any other side will result in the other side attacking inanimate mission editor placed objects such as empty vehicles and static objects, since these objects belong to the civilian side.
</dd>


<dt><dt>
{{Note
<dd class="notedate">Posted on  15:57, 27 February 2008</dd>
|user= Ceeeb
<dt class="note">[[User:T_D|T_D]]</dt>
|timestamp= 20071130112500
<dd class="note"> Be aware that this command only sets the friendliness of one side. If you want to have both sides attacking each other, you have to set both:
|text= Setting the [[civilian]] [[side]] to be the enemy of any other side will result in the other side attacking inanimate mission editor placed objects such as empty vehicles and static objects, since these objects belong to the civilian side.
<code>[[resistance]] [[setFriend]] [<nowiki/>[[east]], 0];
|game= arma1
[[east]] [[setFriend]] [<nowiki/>[[resistance]], 0];</code>
}}
</dd>
 
<dt></dt>
<dd class="notedate">Posted on October 11, 2014 - 20:43 (UTC)</dd>
<dt class="note">[[User:Benargee|Benargee]]</dt>
<dd class="note"> ({{arma3}} 1.30 stable) It is possible to make a side hostile towards itself.
<code>[[west]] [[setFriend]] [<nowiki/>[[west]], 0];</code>
It is only possible to do so with [[west]]/[[blufor]], [[east]]/[[opfor]], [[independent]]/[[resistance]] and [[civilian]].
This essentially creates a free for all deathmatch. Affects AI behaviour too.
</dd>
 
</dl>

Revision as of 19:03, 7 September 2021

Hover & click on the images for description

Description

Description:
Sets how friendly a side is with another. The friendliness is set for one side, not for the other. See also Side relations.
Arma 3
Since Arma 3 this command can be used mid-mission. Before that it was intended to be used on mission start only, as changing value during mission could cause unexpected errors in AI behaviour (especially for groups already knowing about "switched to enemy" groups).
Groups:
Sides

Syntax

Syntax:
side1 setFriend [side2, value]
Parameters:
side1: Side
side2: Side
value: Number - a value smaller than 0.6 results in being enemy, otherwise side1 is friendly to side2
Return Value:
Nothing

Examples

Example 1:
west setFriend [resistance, 0]; // west will not like resistance from now on
Example 2:
resistance setFriend [east, 0]; east setFriend [resistance, 0]; // both are enemies resistance setFriend [east, 1]; east setFriend [resistance, 0]; // resistance likes east, but east does not like resistance
Example 3:
west setFriend [west, 0]; // free for all deathmatch! works with west/blufor, east/opfor, independent/resistance and civilian

Additional Information

See also:
getFriendBIS_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
Ceeeb - c
Posted on Nov 30, 2007 - 11:25 (UTC)

Setting the civilian side to be the enemy of any other side will result in the other side attacking inanimate mission editor placed objects such as empty vehicles and static objects, since these objects belong to the civilian side.