Arma 3
Project injury Reaction (PiR)
 이 토론은 고정되었습니다. 중요해서 그렇겠죠?
Cucumber  [개발자] 2019년 2월 26일 오전 1시 08분
Bug reports
Drop finded bugs here
< >
전체 댓글 475개 중 391~405개 표시 중
0-0  [개발자] 2023년 5월 14일 오후 11시 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.
Thisispo 2023년 5월 14일 오후 11시 39분 
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.
legoman1661 2023년 7월 31일 오전 2시 45분 
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?
legoman1661 2023년 7월 31일 오전 11시 07분 
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일 오후 3시 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))
Longtime 2023년 10월 10일 오전 8시 54분 
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일 오후 2시 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일 오후 9시 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일 오후 8시 07분
Veren 2023년 10월 25일 오후 1시 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.
sovietpeanut173 2023년 11월 4일 오후 12시 16분 
my game crashes when i try to heal myself
2023년 11월 30일 오후 3시 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
< >
전체 댓글 475개 중 391~405개 표시 중
페이지당 표시 개수: 1530 50