In a script im making, I need to make a for loop that waits a specified ammount of time before continuing on to the next segment of the for loop, without needing to use outside functions. this is all inside 1 for loop.
this is what i've tryed:
for(%i = 0; %i < %loops; %i++)
{
%ans[%i] = %loops / %i;
schedule(%delay, 0, "Continue");
}
But it doesnt work.
How can I make this work?