Ah, OK. So it's not just dependent on the loop, but everything that the script has done up to that point. That makes sense. Thank you.
So, just thinking aloud, if one script started a second or multiple scripts, that each had a loop of this kind, would they be counted as one big thing, or several separate things?
i.e. if there was a script like this:
Code: Select all
Script "HypotheticalScriptMaster" (void)
{
ACS_NamedExecute("HypotheticalScript01", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript02", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript03", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript04", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript05", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript06", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript07", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript08", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript09", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript10", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript11", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript12", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript13", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript14", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript15", 0, 0, 0, 0);
ACS_NamedExecute("HypotheticalScript16", 0, 0, 0, 0);
}
and each one of the numbered hypothetical scripts had a while loop, would they all be counted as part of one script, or separately - or is this something else entirely?
I'm not trying to break anything, or do anything daft BTW. I'm just trying to learn stuff.