I understand that '_this' can work for this as a local variable :
_myVariable =
{
_mVa = _this select 0;
_mVb = _this select 1;
_mVc = _this select 2;
_total = _mVa + _mVb - _mVc;
};
[1,2,3] call _hinting;
hint format ["Example Total: %1",_total];
Then i see things like this:
_body = (_this select 3) select 0;
Can someone give some detailed advanced examples where "_this" is used?
Also is _this strictly local?
Thank youuuu!