JoseRodriguez 6 Posted September 30, 2020 Hello, I want AI to follow squad leader instead of player when in "Safe" or "Careless" mode. Is it possible? I actually want them to follow waypoint into village with squad leader by walking weapons down instead of pointing up like about to murder the whole village, but when in this mode, they just follow player which player is supposed to follow another waypoint. If there is any other way, I'll appreciate it. Thanks, Share this post Link to post Share on other sites
Spriterfight 10 Posted October 1, 2020 is the player in the same squad or separate? Share this post Link to post Share on other sites
Spriterfight 10 Posted October 1, 2020 if it is the player s group _group = group player; _pos1 = getMarkerPos "yourvillagemarker"; _wp = _group addWaypoint [_pos1,0]; _wp setWaypointType "MOVE"; _wp setWaypointSpeed "Full"; _wp setWaypointBehaviour "SAFE"; _leader = leader _group; units _group doFollow leader _group; this in the init.sqf of the mission 2 1 Share this post Link to post Share on other sites
Spriterfight 10 Posted October 1, 2020 11 hours ago, JoseRodriguez said: Hello, I want AI to follow squad leader instead of player when in "Safe" or "Careless" mode. Is it possible? I actually want them to follow waypoint into village with squad leader by walking weapons down instead of pointing up like about to murder the whole village, but when in this mode, they just follow player which player is supposed to follow another waypoint. If there is any other way, I'll appreciate it. Thanks, Please describe the problem detailed Share this post Link to post Share on other sites
beno_83au 1369 Posted October 1, 2020 If you need to you can remove the player from the group while they're doing their own thing, then rejoin them later. https://community.bistudio.com/wiki/joinSilent 1 1 Share this post Link to post Share on other sites
JoseRodriguez 6 Posted October 3, 2020 On 10/2/2020 at 12:51 AM, beno_83au said: If you need to you can remove the player from the group while they're doing their own thing, then rejoin them later. https://community.bistudio.com/wiki/joinSilent I was actually playing the first showcase and realized that. Thank you very much. 3 Share this post Link to post Share on other sites