Currently you need to do this to get a number one higher:
_i = _i + 1;
but that just shows that SQF is missing an important feature to make code readable and easy to get inside!
im working in a software company and if i need to setup any counter i would, will and are not allowed to use "variable = variable + 1;" as it breaks codestyle heavily ...
so there should be a "_i++" (and also an "_i--") for good code reading and compatibility to many other languages.
thx for your service
X39