Page MenuHomeFeedback Tracker

ARJay
User

Projects

User does not belong to any projects.

User Details

User Since
May 6 2013, 1:28 PM (572 w, 4 d)

Recent Activity

May 10 2016

ARJay added a comment to T71704: When loading in Altis game drops to 1 FPS..

This is nothing to do with multiplayer, it's a legit bug, 1 player placed in editor hit preview, 1 FPS

May 10 2016, 5:53 AM · Arma 3
ARJay added a comment to T71704: When loading in Altis game drops to 1 FPS..

Same issue

15% GPU utilisation, 1-5 FPS Texture LOD issues

Win 7 32bit SSD
Core2 Quad Q9400
4GB RAM
GeForce GTX Titan

May 10 2016, 5:53 AM · Arma 3
ARJay added a comment to T66531: AI civilian when grouped to west will not be attacked by east unit.

Ok thanks Phalanx. The code worked in previous builds so hopefully its a bug that has been introduced recently

May 10 2016, 2:45 AM · Arma 3
ARJay added a comment to T66531: AI civilian when grouped to west will not be attacked by east unit.

I'm not sure I understand you Phalanx.

Civilian unit when grouped to west will NOT be attacked by east, which is the opposite of what you have described.

May 10 2016, 2:45 AM · Arma 3
ARJay edited Steps To Reproduce on T66531: AI civilian when grouped to west will not be attacked by east unit.
May 10 2016, 2:45 AM · Arma 3
ARJay added a comment to T66420: Ifrit emptyPostions error.

Coder error please close

May 10 2016, 2:40 AM · Arma 3
ARJay edited Steps To Reproduce on T66420: Ifrit emptyPostions error.
May 10 2016, 2:40 AM · Arma 3

May 9 2016

ARJay added a comment to T58527: AI Behaviour Glitch on Exiting Vehicle.

Heres a test script I put together for this issue. I believe it effects any setBehaviour type and not just SAFE. This bug means AI exiting a vehicle never reach unitReady true. Removing the setBehaviour line below fixes the issue

  • spawn

{
private ["_group", "_leader1", "_unit", "_vehicle", "_continue", "_boarded", "_disembarked"];

_group = createGroup east;
_leader1 = _group createUnit ["O_Soldier_TL_F", getPos player, [], 0 , "NONE"];

for "_i" from 0 to (3) do
{

		_unit = _group createUnit ["O_Soldier_F", getPos player, [], 0 , "NONE"];

};

_group setBehaviour "SAFE";

_vehicle = createVehicle ["O_Ifrit_F", getPos player, [], 0, "NONE"];
_group addVehicle _vehicle;
units _group orderGetIn true;

_continue = false;
while { !_continue } do
{

		_boarded = true;
		{
			if!(_x in _vehicle) then
			{
				_boarded = false;
			};
		} forEach units _group;
		if(_boarded) then { _continue = true };

};

diag_log "ALL BOARDED";
sleep 2;
_group leaveVehicle _vehicle;

_continue = false;
while { !_continue } do
{

		_disembarked = true;
		{
			if(_x in _vehicle) then
			{
				_disembarked = false;
			};
		} forEach units _group;
		if(_disembarked) then { _continue = true };

};

diag_log "ALL DISEMBARKED";

{

		diag_log format["%1 IS READY: %2", _x, unitReady _x];

} forEach units _group;

};

May 9 2016, 3:19 PM · Arma 3