Arma 3 Version: 1.66.139586
CBA Version: 3.1.2.161105
ACE3 Version: 3.8.3.14
Mods:
@CBA_A3@aceDescription:
Steps to reproduce:
Where did the issue occur?
RPT required.
Also, try to repro with only CBA and ACE enabled. If not possible, find out which mod causes the problem when used with ACE (or if it even is a problem with ACE at all).
This has to do with ST UI Stamina bar. ShackTac Stamina bar deletes the default stamina bar resource and uses its own, so when ACE initializes and wants to use that resource, it cant be found. Suggest removing the ST UI stamina pbo.
https://github.com/acemod/ACE3/blob/master/addons/common/RscInfoType.hpp#L111
from stui_stamina.pbo, config.cpp:
class RscInGameUI
{
delete RscStaminaBar;
};
ST UI Stamina bar shouldn't delete a class. It should make the bar invisible instead (alpha 0, size 0).
Thanks heaps guys deleting the stui pbo worked, unfortunately it was what made me discover that theirs heaps of startup errors but it only shows you one of them
ps sorry for the late reply been busy
Most helpful comment
This has to do with ST UI Stamina bar. ShackTac Stamina bar deletes the default stamina bar resource and uses its own, so when ACE initializes and wants to use that resource, it cant be found. Suggest removing the ST UI stamina pbo.
https://github.com/acemod/ACE3/blob/master/addons/common/RscInfoType.hpp#L111
from stui_stamina.pbo, config.cpp: