Hi guys, quick question.
If I'm dealing with a large sleep number, is it 'better' to execVM a script, or can I use in function?
-> script:
_amount = _this select 0;
Sleep _amount;
Hint "Done.";
;
-> function:
_MyFantasticFunction =
{
_amount = _this select 0;
[] spawn
{
Sleep _amount;
Hint "Done.";
};
};
I tested both, and they worked exactly the same, but I'm just wondering performance wise if either works better then the other.