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.
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!
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!