Jump to content
Sign in to follow this  
panda123

unit follow unit

Recommended Posts

hi all,

I am creating a mission and I have a litte problem. I would like a second squad follow my team but 10 or 20 metres behind me or better on my right or left.

I've tried the Dofollowunit script http://www.armaholic.com/page.php?id=2968 but it seems it doesn't work on arma 2 (tried many times but no results).

Does someone have a solution for this ?

Thanks for your help.

Share this post


Link to post
Share on other sites

Put this in the init field of the group leader which should follow you:

[group this, 10] execVM "DoFollow.sqf";

Note: 10 is the distance in meters which will be used to make the group not move if closer then this.

If you change it to 30 for example then the group will only move if the distance is more then 30 meters.

DoFollow.sqf

_group = _this select 0;
_distance = _this select 1;

while { ( { (alive _x) } count (units _group) > 0) } do
{
      if (vehicle leader _group distance player > _distance) then
      {
             {_x doMove (getPos player) } forEach units _group;
      };

      sleep 5;
};

Edited by SNKMAN

Share this post


Link to post
Share on other sites

Hi,

Thanks for your answer, I've got this error captures.png

As you can see [group this, 10] execVM "DoFollow.sqf"; is in init field of the group leader. That give a big headache :p

Share this post


Link to post
Share on other sites

Try adding a handle to the init line code:

[color="Green"]nul = [/color][group this, 10] execVM "DoFollow.sqf";

Share this post


Link to post
Share on other sites

Sorry i had changed this and forget to add the script handler.

It should be:

Follow = [group this, 10] execVM "DoFollow.sqf";

Share this post


Link to post
Share on other sites

Well i had the best experiance with the doMove command. Of course you could use doFollow as well.

Share this post


Link to post
Share on other sites

thanks all for your help now it's working perfectlly :)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×