Please add an alternative call syntax for continue and break commands
Example:
if (cond1) continue; if (cond2) break;
without then
Please.
Please add an alternative call syntax for continue and break commands
Example:
if (cond1) continue; if (cond2) break;
without then
Please.
Not possible. SQF just doesn't work that way.
We could do
if (cond1) continueWith nil; though, but thats ugly.