Page MenuHomeFeedback Tracker

Please Fix - Loading AI-subordinates into the player's vehicle, will occurs ONLY if the player's driver currently is in formation with its commander!
New, NormalPublic

Description

@Bis Good day!
I remember a time when this problem didn't exist before in Arma3. However, in some update (5-3 years ago) it was added in one patch. This most likely happened when driving from the position of the commander was added, since the driver does it. I'm sorry if this ticket seems long to you, but otherwise I just can't explain this problem.

On the Bohemia website, in the Community WIKI, in the description of the LOAD waypoint it is written:
"The group will move to the waypoint (spatial or object), then any soldiers on foot will board any vehicles the group possesses. They will get into the vehicles as cargo where possible, then as the crew of the vehicle"
No other conditions!

Yes, this is how it worked before, until there was an additional condition for the group to actually load into the player`s vehicle.
The vehicle into which the squad is loaded, must be in the "in formation" status with its commander. If it is not in formation, i.e. the player pressed one the buttons - W/A/D/S i.e. moves on its own, then the AI will not enter his vehicle. Never!! For this reason the problem will only affect the player's vehicle not AI vehicles, because AI subordinate vehicle always located in auto-formation with its commander.

For a better understanding, this circuit is shown here:

If the player is under AI command but this player still the commander of their tank.
After joining an infantry group, the AI-commander of this whole group will have to load into any empty spaces in the tanks (including the player's tank). But if the player drives his own tank, without staying in an auto-formation, then the joining infantry group will never get into player`s vehicle, despite the order of the commander -> Here is problem!
After the commander orders to all infantrymens to get into the vehicles, some of the soldiers will run to the player's tank and will stop in front of it. They simply won't be able to enter the any vehicle, until the player tells their driver to return to formation (menu button - `/1/Return to Formation)

Please fis this problem! Prior to this bug, an AI team was able to load into any vehicle, as soon as the vehicle stop, regardless of whether the driver of the vehicle was in the formation or not. This creates problems. The player's vehicle may be out of formation with the its ai-commander and far away from him, while joined subordinate foot soldiers can be near the player's vehicle. The player simply cannot return to the formation, having traveled dozen of kilometers, and then wait until the infantry reaches him and is loaded into the player’s transport

Details

Severity
Block
Resolution
Open
Reproducibility
Always
Operating System
Windows 7 x64
Category
AI Issues
Steps To Reproduce

Repeat the scheme indicated in my screenshot. - 3 waypoint - JOIN AND LEAD, JOIN (for infantry group), LOAD

a) If you are not driving your tank (your driver automatically follows his commander in auto-formation) then there will be no problem
b) If you are driving your tank (your driver does not automatically follow his commander, but follows your commands to move - W/A/D/S) then the problem will be here!

Event Timeline

mickeymen created this task.Sep 9 2022, 1:42 PM
mickeymen updated the task description. (Show Details)Sep 9 2022, 1:47 PM
mickeymen updated the task description. (Show Details)Sep 9 2022, 1:50 PM
mickeymen updated the task description. (Show Details)
mickeymen changed Category from AI Control / Commanding to AI Issues.Sep 9 2022, 1:54 PM
mickeymen updated the task description. (Show Details)

You can fix it yourself by setting the effective commander as the driver himself:

this addEventHandler ["GetIn", {
	params ["_veh"];
	if (!isNull driver _veh) then {
		_veh setEffectiveCommander driver _veh;
	};
}]
mickeymen updated the task description. (Show Details)Sep 9 2022, 2:05 PM

You can fix it yourself by setting the effective commander as the driver himself:

Thanks for answer, but why not just fix it and make it work like before?

This really creates problems because the player's vehicle may be out of formation with the its ai-commander and far away from him, while joined subordinate foot soldiers can be near the player's vehicle. The player simply cannot return to the formation, having traveled dozen of kilometers, and then wait until the infantry reaches him and is loaded into the player’s transport.

In addition, the player can only influence his mission with the help of scripting. But he still has hundreds of missions from the workshop and official companies that he cannot influence.

You can fix it yourself by setting the effective commander as the driver himself:

this addEventHandler ["GetIn", {
	params ["_veh"];
	if (!isNull driver _veh) then {
		_veh setEffectiveCommander driver _veh;
	};
}]

This would help advanced mission makers yes but entry level mission makers with just some EDEN experience and little scripting experience will not be able to enjoy this fix (actually a workaround).

To be honest one of the reasons why unmodded arma content is so uncommon/unthinkable for mission makers is that BI demands their players to come up with their own workarounds too much. I bet you learned scripting and eventually over the years became of of the most knowledgeable modders out there due to your own dissatisfaction with the state of the game in many regards. It shouldn't have to be that way in most cases, that players need to learn advanced scripting/modding just to make their missions more fun or less buggy specially when the feature is/was already present and it is just currently broken and/or incomplete for any reason.

You can fix it yourself by setting the effective commander as the driver himself:

this addEventHandler ["GetIn", {
	params ["_veh"];
	if (!isNull driver _veh) then {
		_veh setEffectiveCommander driver _veh;
	};
}]

This would help advanced mission makers yes but entry level mission makers with just some EDEN experience and little scripting experience will not be able to enjoy this fix (actually a workaround).

To be honest one of the reasons why unmodded arma content is so uncommon/unthinkable for mission makers is that BI demands their players to come up with their own workarounds too much. I bet you learned scripting and eventually over the years became of of the most knowledgeable modders out there due to your own dissatisfaction with the state of the game in many regards. It shouldn't have to be that way in most cases, that players need to learn advanced scripting/modding just to make their missions more fun or less buggy specially when the feature is/was already present and it is just currently broken and/or incomplete for any reason.

You wrote the golden words, I subscribe to your every letter.

All I want from Arma3 is not new features. I would just dream that all the already announced and existing functions in the game would work without problems!