OCAP2 / OCAP

OCAP is an Arma 3 mission recording suite. It consists of a serverside addon and a packaged web server executable that allows for after-action review and better insight into what really happened.
Other
58 stars 14 forks source link

CUP SearchLight is shown as an "?" #52

Closed Fuggschen closed 2 years ago

Fuggschen commented 3 years ago

Here is the classname that is shown as an "?":

CUP Mod:

We are also using a Mod called "BoxLoader - Vehicle in Vehicle loading" and it creates a empty Vehicle for the Boxes to attach to. Those shouldn't be visible in the recording at all (maybe adding a classname blacklist would be helpful):

indig0fox commented 3 years ago

Re: your second ask, both classname and KindOf blacklist options exist in the userconfig/config.hpp file. Simply add the baseclass to ocap_excludeKindFromRecord, or the direct classes to the ocap_excludeClassFromRecord array.

Fuggschen commented 3 years ago

Re: your second ask, both classname and KindOf blacklist options exist in the userconfig/config.hpp file. Simply add the baseclass to ocap_excludeKindFromRecord, or the direct classes to the ocap_excludeClassFromRecord array.

Okay thanks for the Info. Didn't saw this feature. Can I use an asterix to cover multiple classes or should I find the baseclass?

Fank commented 3 years ago

The matches checks against classes, not strings, so you need to find the base class. https://github.com/OCAP2/addon/blob/1bf329a6840e12fa28218a83daaced27bc1fddbf/addons/%40ocap/addons/ocap/functions/fn_startCaptureLoop.sqf#L173