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
Several Arma "escaped" strings do not count as escaped strings. But some of these strings have no other way to be properly escaped and work in Arma. See examples below:
AresDisplays ="\achilles\ui_f\scripts\";
These double qoutes also break armake. The false positive is indicated by the above line (it was included in the next file)
Several Arma "escaped" strings do not count as escaped strings. But some of these strings have no other way to be properly escaped and work in Arma. See examples below:
These double qoutes also break armake.The false positive is indicated by the above line (it was included in the next file)After further playing around one way to bypass the issue is to use no quotes at all. This works in armake and Arma.
AresDisplays = \achilles\ui_f\scripts\;
The text was updated successfully, but these errors were encountered: