generally, an error message like
No entry 'config.bin/CfgWeapons/[addon classname]/[addon subclass].[property]'
means that in one of your addon-config classes (like CfgVehicles, cfgAmmo etc.) a required property is not specified.
the cause is mainly that an addon class has been inherited from a class that does not provide a default property for that. thus it must be defined by the addonmaker.
in this special case, the code of the addon holds something like this:
Class cfgWeapons
{
class Default[{};
class ....
.
.
class and_kar98 : [base class name]
{
//blablabla
.
.
modes={"Single"};
class Single
{
//here the class asks for ffCount, so provide it
ffCount=[value];
.
.
};
};
};
do that by un-pbo-ing the addon and editing the config accordingly, and the error message will be gone.
following these instructions you might also be able to find that other error.
well, speakin of ffCount... reason why i came to this thread was that searching for ffCount took me here. Tried to find out what that param actually means....?