Reply to Re: Scripting Help
If you don't have an account, just leave the password field blank.
if (&story > 3)
{
say_stop("Blah.", 1);
}
That would run if the &story variable is above 3. Didn't you learn the > greater than < less than thing in school? On more thing...
if (&story >= 3)
{
say_stop("Blah.", 1);
}
That will run if the &story variable is either greater than or equal to 3. (It might be ... &story => 3) I forgot.
{
say_stop("Blah.", 1);
}
That would run if the &story variable is above 3. Didn't you learn the > greater than < less than thing in school? On more thing...
if (&story >= 3)
{
say_stop("Blah.", 1);
}
That will run if the &story variable is either greater than or equal to 3. (It might be ... &story => 3) I forgot.