Page MenuHomeFeedback Tracker

[Feature Request] New scripting command: returnToFormation
New, NormalPublic

Description

https://community.bistudio.com/wiki/doFollow provide such functionality, but it has other undesired implications/downsides:

  1. It forces them to exit vehicles. Ref: https://forums.bohemia.net/forums/topic/219774-strange-perplexing-problem-with-dofollow
  2. It is not always working reliably (when two groups are joined)

Command syntax could be the same as with doFollow.

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
Scripting

Event Timeline

h- added a subscriber: h-.Aug 18 2020, 5:45 PM

@kju-PvPscene
In case this doesn't get implemented, you can use _units joinSilent _group. Though it shouldn't be used on the group leader, because the leader will leave the group and rejoin; one workaround is to temporarily set any unit as the leader (the unit doesn't have to be a member of the squad, so you can create a helper civilian unit for the entire mission), use joinSilent, then select the original leader, i.e:

_leader = leader _group;
_group selectLeader _helperUnit;
_units joinSilent _group;
_group selectLeader _leader;