Arma 3
Project injury Reaction (PiR)
 このトピックはピン留めされているので、おそらく重要です
Cucumber  [開発者] 2019年2月26日 1時08分
Bug reports
Drop finded bugs here
< >
391-405 / 475 のコメントを表示
0-0  [開発者] 2023年5月14日 23時35分 
Thisispo の投稿を引用:
If a player does not hold the main weapon in their hand, regardless of whether their health and armor coefficients are fully set or whether they are wearing heavy armor, they will fall to the ground with one shot. The problem now is that the player and AI have too little health, and the settings will not work. Even if their health and armor coefficients are fully set and they are wearing heavy armor, they cannot withstand 3-4 shots

That's right, because the animations are made only for the main weapon.
The problem I am currently facing is that the player's health is very low, and changing the settings does not work, causing the player to easily fall to the ground. Is there a way to solve this situation?
0-0  [開発者] 2023年5月15日 2時31分 
Thisispo の投稿を引用:
The problem I am currently facing is that the player's health is very low, and changing the settings does not work, causing the player to easily fall to the ground. Is there a way to solve this situation?

All settings work only if you have a main weapon in your hands.
Do the PiR medikits weigh more than the vanilla medikits? Because if so, it causes an issue where, if a medikit is in a uniform/vest/backpack with limited space, it will remove the medikit and not replace it with its PiR equivalent due to there not being enough inventory space to fit the PiR medikit.
最近の変更はlegoman1661が行いました; 2023年7月31日 2時46分
0-0  [開発者] 2023年7月31日 3時14分 
legoman1661 の投稿を引用:
Do the PiR medikits weigh more than the vanilla medikits? Because if so, it causes an issue where, if a medikit is in a uniform/vest/backpack with limited space, it will remove the medikit and not replace it with its PiR equivalent due to there not being enough inventory space to fit the PiR medikit.

So maybe before writing to the bug tracker, it's worth launching the game and taking a look?
0-0 の投稿を引用:
legoman1661 の投稿を引用:
Do the PiR medikits weigh more than the vanilla medikits? Because if so, it causes an issue where, if a medikit is in a uniform/vest/backpack with limited space, it will remove the medikit and not replace it with its PiR equivalent due to there not being enough inventory space to fit the PiR medikit.

So maybe before writing to the bug tracker, it's worth launching the game and taking a look?
I posted that to the bug report thread because the medikits of some of the units were disappearing. It was not an issue with mass, as I had previously thought. The PiR medikit is only able to be put into backpacks, but the vanilla medikit is able to be put into vests as well as backpacks. This means that if a unit has a medikit in their vest, it will get removed and be unable to be replaced by its PiR equivalent. To fix this, simply change the 8669th line in the config file of PiR.pbo to "allowedSlots[]={701,901};"

Edit: Whilst that would allow the PiR medikits to be placed in vests, the function that changes the vanilla medikits into PiR medikits only adds medikits to the backpack. To properly fix this, the 67th line of PiRstart.sqf would have to be changed to "for "_i" from 1 to _numberOfKits do {[ _unitP, "PiR_apteka"] remoteExecCall [ "addItem", _unitP ]};" so that the medikits can fill whatever inventory space remains, instead of always trying to fill the backpack.
最近の変更はlegoman1661が行いました; 2023年7月31日 15時40分
0-0  [開発者] 2023年7月31日 11時15分 
legoman1661 の投稿を引用:
0-0 の投稿を引用:

So maybe before writing to the bug tracker, it's worth launching the game and taking a look?
I posted that to the bug report thread because the medikits of some of the units were disappearing. It was not an issue with mass, as I had previously thought. The PiR medikit is only able to be put into backpacks, but the vanilla medikit is able to be put into vests as well as backpacks. This means that if a unit has a medikit in their vest, it will get removed and be unable to be replaced by its PiR equivalent. To fix this, simply change the 8669th line in the config file of PiR.pbo to "allowedSlots[]={701,901};"

Yes, the medikits can only be placed in a backpack. There is no need to fix what is not broken))) It was meant to be. The Medic must wear a backpack, this is a gameplay moment.
Bendy 2023年9月9日 11時45分 
BUG?? if I give the squad a 'stop' command and then I get incapacitated - the AI squad members do not come to heal me. They just stand there looking stupid.
I have tested this in the editor multiple times - without any other mods (apart from CBA).
So if I do not give them the 'stop' command and get incapacited, they do come to heal me.
So it seems to be the 'stop' command.
0-0  [開発者] 2023年9月9日 12時02分 
Bendy の投稿を引用:
BUG?? if I give the squad a 'stop' command and then I get incapacitated - the AI squad members do not come to heal me. They just stand there looking stupid.
I have tested this in the editor multiple times - without any other mods (apart from CBA).
So if I do not give them the 'stop' command and get incapacited, they do come to heal me.
So it seems to be the 'stop' command.

Already answered the first message))
This works when I play locally but I don't see any effects on dedicated MP server. I tried to reset the vars with an empty .vars.Arma3Profile and I see the CBA settings initialize but no effects are visible. CBA3 and PIR are configured for client and server. Any ideas? I'm going crazy here... Great mod!
Longtime 2023年10月10日 14時58分 
Strange but I see Indfor being injured and drag but only Indfor. Opfor or Blufor units always just die. Not sure what is happening.
Longtime 2023年10月11日 21時32分 
I was able to fix my problem by allowing pir functions for remote execution.

"Scripting command 'pir' is not allowed to be remotely executed" and others, so I added the following to the mission description.ext:

class CfgRemoteExec { class Commands { class pir {}; class setbleedingremaining {}; class call {}; }; };
最近の変更はLongtimeが行いました; 2023年10月13日 20時07分
Veren 2023年10月25日 13時24分 
Hi, I installed the mod again after long time and players get incapacitated after even tiny amount of damage. I have no other mods apart from PIR and CBA, and I've been testing this on default settings.
my game crashes when i try to heal myself
2023年11月30日 15時07分 
Longtime の投稿を引用:
I was able to fix my problem by allowing pir functions for remote execution.

"Scripting command 'pir' is not allowed to be remotely executed" and others, so I added the following to the mission description.ext:

class CfgRemoteExec { class Commands { class pir {}; class setbleedingremaining {}; class call {}; }; };

Still doesnt work. Same issue as you.. The ai are effected and not player
< >
391-405 / 475 のコメントを表示
ページ毎: 1530 50