Reply to Re: Assigning local and global variables to the loop:
If you don't have an account, just leave the password field blank.
Ehm?
If we're talking about the same thing, then a loop is like this?
loop:
&var += 1;
wait(250);
if (&var > 50)
{
goto loop;
}
I haven't checked but ehm yeh, I think it's possible to then have a second loop after that, so:
loop:
&var += 1;
wait(250);
if (&var > 50)
{
goto loop;
}
loopagain:
&twovar += 1;
wait(250);
if (&twovar > 50)
{
goto loopagain;
}
If we're talking about the same thing, then a loop is like this?
loop:
&var += 1;
wait(250);
if (&var > 50)
{
goto loop;
}
I haven't checked but ehm yeh, I think it's possible to then have a second loop after that, so:
loop:
&var += 1;
wait(250);
if (&var > 50)
{
goto loop;
}
loopagain:
&twovar += 1;
wait(250);
if (&twovar > 50)
{
goto loopagain;
}






