Page MenuHomeFeedback Tracker
Feed Advanced Search

Jul 4 2016

fabrizioT added a comment to T77744: setunitpos.

Please let setUnitpos override any AI stance handling, as it used to.

Jul 4 2016, 10:27 AM · Arma 3

May 10 2016

fabrizioT added a comment to T80709: AI don't keep up, and do not respond well to "move" or "get in" commands when in "danger" mode. (New movement command suggested).

Indeed AI units get stuck and unresponsive. It may be related to some animation bug, or pathfinding or something else. We definetely need some solution here.

@giova:

  1. CPU cycling is not a key factor. It's possible to get AI units unresponsive even with a few AI units and high FPS;
  1. I've never seen a single case in which a single AI unit opened fire without being seen, care to repro? Also units are not supposed to open fire when *engaged*, but rather when *detected*.

Finally, you may get units to rush to some position while in danger mode, but that requires some scripting which ends up making them more vulnerable.

May 10 2016, 10:02 AM · Arma 3
fabrizioT added a comment to T75729: Stuck in cinematic mod.

Same here, stuck at the "assemble" point.
Cinema borders on, player can look around, but no movement nor interation are possible.

DEV 1.11.115723

May 10 2016, 7:43 AM · Arma 3
fabrizioT added a comment to T75142: selectWeapon script command not functioning..

I think Killzone_Kid gave valid and useful hints here.

To me selectweapon "Throw" was working fine within ArmA3 1.08 and not later, so i think that whatever is broken, it was broken within DEV builds just after 1.08.

May 10 2016, 7:28 AM · Arma 3
fabrizioT added a comment to T75142: selectWeapon script command not functioning..

Moved a note to other ticket:
http://feedback.arma3.com/view.php?id=14177

May 10 2016, 7:28 AM · Arma 3
fabrizioT added a comment to T75142: selectWeapon script command not functioning..

@DarkDruid:
Any chance we'll got this fixed soon?

May 10 2016, 7:28 AM · Arma 3
fabrizioT added a comment to T75142: selectWeapon script command not functioning..

@Killzone_Kid:

can't reproduce what you write.
Just tested on 10/01/2014 DEV version.
The following code, put into unit init field:

handle = this spawn {
sleep 1;
_this selectWeapon "Binocular";
hintc format["%1", currentweapon _this];
};

shows current weapon being the original weapon and not binocular even immediately after selectweapon execution.
So i think selectweapon is broken.
It worked fine till version 1.08 though.

---

Run the attached repro (selectweapon_bug_2.Stratis.zip).

May 10 2016, 7:28 AM · Arma 3
fabrizioT added a comment to T75142: selectWeapon script command not functioning..

@Killzone_Kid:

Bah. You're right.
I originally tested the code with "Throw", then swapped to "Binocular" to keep on track with original report.
Forgot checking unit inventory.

Code:

handle = this spawn {
sleep 1;
_this selectWeapon "Throw";
hintc format["%1", currentweapon _this];
};

is not working right anyway.
I've seen this ticket of yours, looks related:
http://feedback.arma3.com/view.php?id=14177

May 10 2016, 7:28 AM · Arma 3
fabrizioT added a comment to T74808: AI takes road signs as cover, wire fences as solid walls and training obstacles.

And poles, gates

May 10 2016, 7:20 AM · Arma 3
fabrizioT added a comment to T74658: [Request] Ability to terminate group leader issued orders execution (currentCommand).

Having observed AI behaviour having currentCommand = "ATTACK", i'd say some scripting commands are briefly able to override the command, but looks like "ATTACK" takes over again, almost immediately.

I also tried to override currentCommand via a custom doFSM call, but the call appeared to be:

a) skipped most of times;
b) rarely executed with substantial delay, then quickly overriden.

May 10 2016, 7:16 AM · Arma 3
fabrizioT added a comment to T72536: selectWeapon "Put" or "Throw" won't stay on.

ArmA 3, v1.10 official:
the following code, put into a unit (named buddy) init field:

oneachframe { buddy selectWeapon "Throw"; buddy globalchat format["%1", currentweapon buddy]; };

Always returns unit's primary weapon.
Enclosing code into a spawn {} block does not change the result.

May 10 2016, 6:15 AM · Arma 3
fabrizioT added a comment to T64333: unit reveal [enemy, value] not working - build 0.53 103342.

Looks fixed now.

May 10 2016, 1:21 AM · Arma 3

May 9 2016

fabrizioT added a comment to T62287: AI don't keep up, and do not respond well to "move" or "get in" commands when in "danger" mode. (New movement command suggested).

Indeed AI units get stuck and unresponsive. It may be related to some animation bug, or pathfinding or something else. We definetely need some solution here.

@giova:

  1. CPU cycling is not a key factor. It's possible to get AI units unresponsive even with a few AI units and high FPS;
  1. I've never seen a single case in which a single AI unit opened fire without being seen, care to repro? Also units are not supposed to open fire when *engaged*, but rather when *detected*.

Finally, you may get units to rush to some position while in danger mode, but that requires some scripting which ends up making them more vulnerable.

May 9 2016, 11:54 PM · Arma 3