The Dink Network

Reply to Re: Assigning local and global variables to the loop:

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
May 3rd 2005, 05:16 PM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
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;
}