You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the config.cpp parser does not take $PBOPREFIX$ into account.
The following example does not work:
$PBOPREFIX$: fr\gsri\opex
class CfgFunctions {
class GSRI {
class bays {
file="fr\gsri\opex\functions\bays";
class bayDoorControl {};
class bayParseList {};
class bayReplace {};
};
};
};
If I remove the prefix from config.cpp, it works :
class CfgFunctions {
class GSRI {
class bays {
file="functions\bays";
class bayDoorControl {};
class bayParseList {};
class bayReplace {};
};
};
};
The text was updated successfully, but these errors were encountered:
It looks like the config.cpp parser does not take$PBOPREFIX$ into account.
The following example does not work:
fr\gsri\opex
If I remove the prefix from config.cpp, it works :
The text was updated successfully, but these errors were encountered: