Dedmen Miller
Dedmen Miller
Have you checked how often your scope code is evaluated? That might cause some performance problems if it's compiled/executed too often
> Is the escaped quote at the end the problem? That's the only difference I see. Yes syntax error
We can push this back till we have a official Intercept CBA plugin. Then we can just move the XEH's into the Plugin. But we need some solution for the...
>The real problem is only that clients are forced to have CBA if the server runs it. https://github.com/CBATeam/CBA_A3/pull/866
I would struct settingEntry { uint8_t force; std::string settingValue; } std::unordered_map settings; on parse then clear map and parse entries into it. on update you just update the entry, and...
> But what if I edit the file while the game is running? store file change date of last parse/write. Then when reading check file change date, if it was...
I thought GCC exports by default and doesn't need a special pragma. Error only happens when compiling a Plugin with gcc? I didn't test that on last release, I only...
the intercept_client library is deprecated. You should prefer to compile the sources directly into your plugin, instead of doing that extra step with building the client lib and then linking...
Where did you get the intercept_client.a from? self compiled? or did we include that in a release archive? The library as intermediary is more cumbersome and less efficient. For every...
Any one know from which Arma version the functions listed here are? I'd say we should open a new issue for each new Arma version's wrappers instead of adding it...