Jump to content

panda123

Member
  • Content Count

    240
  • Joined

  • Last visited

  • Medals

Posts posted by panda123


  1. In this forum you can find a script for this

    put in waypoint init for example : Follow = [group this, 20] execVM "DoFollow.sqf";

    and create with your editor Dofollow.sqf and put

    _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;

    };

    It's not really good because a group follow you like body guards (for my opinion).

    May be this script help you :)


  2. Is it possible to set up a number of arty calls with secop module ? because in the trigger you have only two option : one time, and repeatedly.

    thanks for your answers :)

    ---------- Post added at 01:14 PM ---------- Previous post was at 11:24 AM ----------

    ok I think I got my answer ...

    ---------- Post added at 01:15 PM ---------- Previous post was at 01:14 PM ----------

    admin can cancel this unusefull post

×