Page MenuHomeFeedback Tracker

Units in player's group do not speak correctly without radio
New, WishlistPublic

Description

Some time ago, the ability to hear other groups speak was added. This is an amazing addition.

However, it's not working right for the player's group (Without radio). You'll only hear them say some words, and some not at all.

Details

Legacy ID
3029559815
Severity
None
Resolution
Open
Reproducibility
Always
Category
Sound
Steps To Reproduce

Open the editor and place any player unit on Altis. Then preview, and execute the following in the debug console:

  • spawn { _pos = [[11460.3,11620.1,0.00145721], [11506.2,11711.8,0], [11577.5,11751.4,0], [11632.2,11860.8,0]]; player setPos (_pos select 0); sleep 3; for [{_j = 0}, {_j < 2}, {_j = _j + 1}] do { _group = createGroup independent; for [{_i = 0}, {_i < 4}, {_i = _i + 1}] do { _unit = _group createUnit ["I_Soldier_F", getPos player, [], 0, "NONE"]; _unit unassignItem "ItemRadio"; _unit removeItem "ItemRadio"; }; if (_j > 0) then { _oldPlayer = player; selectPlayer leader _group; deleteVehicle _oldPlayer; }; sleep 1; { if (_x != leader _group) then { _randomPos = _pos select _forEachIndex; _x commandMove _randomPos; sleep 3; }; } forEach units _group; sleep 1; { if (_x != leader _group) then { commandStop _x; _x commandWatch player; }; } forEach units _group; sleep 5; _group move getPos player; waitUntil { unitReady leader _group }; sleep 1; if (_j <= 0) then { { deleteVehicle _x; } forEach units _group; deleteGroup _group; }; }; };

An AI group will be spawned without radios. Notice how you can hear everything, including the subordinates responding.

After that, the group will be replaced, and player will become leader (Again, without radio).
Notice how now, none of the subordinates respond.

Try also pressing 5,5 for report, and notice how they leave out the word "Grid".

Event Timeline

MulleDK19 edited Additional Information. (Show Details)
MulleDK19 set Category to Sound.
MulleDK19 set Reproducibility to Always.
MulleDK19 set Severity to None.
MulleDK19 set Resolution to Open.
MulleDK19 set Legacy ID to 3029559815.May 7 2016, 6:02 PM