The Dink Network

Reply to Re: Re:

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:
 
 
July 13th 2004, 10:54 AM
knightg.gif
WC
Peasant He/Him United States
Destroying noobs since 1999. 
Ok, the wait command.

The number in the wait() is the number of miliseconds the script will pause before going to the next command. You can see this commonly used between line of two people talking so the first set of text disappears for a fraction of a second before the next set comes up (just makes it look nicer).

wait(1000);

this pauses the script for 1 second.

wait(500);
wait(500);

this will laso pause it for a second, but why use two commands when you could use one?