The Dink Network

Reply to Re: Maybe if you type real slow I will understand

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 12th 2004, 10:30 PM
knightg.gif
WC
Peasant He/Him United States
Destroying noobs since 1999. 
You bone heads should probably explain the diffrence between the two.

Say and say stop:

Say will execute the command for the sprite to say somethign and then continue to execute the rest as the user is 'talking' (by talking I mean the text hovering over their head). Say stop will cause them to 'talk', but will hault the rest on the script.

Example

THis will cause three diffrent sprite to say the exact same hting at once.

say("yeah", &numer_one);
say("yeah", &number_two);
say("yeah", &number_three);

as say stop will cause them to say it one after another with a small pause between them (almost liek they are repeating each other.

say_stop("yeah", &numer_one);
say_stop("yeah", &number_two);
say_stop("yeah", &number_three);

Have fun!