Re: TIB: Double IF statement Question


[Prev][Next][Index][Thread]

Re: TIB: Double IF statement Question




> I was wondering if there is any way to have a double if statement?
> Thank you, and by the way Starting yesterday I save all of the Emails on
> this message board thingie, so if anyone needs a back-mail from this
> point on, just Email me-Jumper

Yes, you can nest any loop.

:For stuff
:If stuff==stuff
:then
:if more stuff==more stuff
:do stuff here
:End
:End
:End

It would be easier to do this instead of the one above though:

:For stuff
:If stuff==stuff and more stuff==more stuff
:do stuff here
:End
:End