The Dink Network

Reply to Re: Scripting Help

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 30th 2007, 02:03 AM
sob_scorpy.gif
DinkDude95
Peasant He/Him Australia
The guy with the cute D-Mod. 
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.