User:Aichon/Sandbox/Templates1

From The Urban Dead Wiki
< User:Aichon‎ | Sandbox
Revision as of 06:24, 22 December 2009 by Aichon (talk | contribs)
Jump to navigationJump to search

Basically, you'd just say:

{{if equal
|variable1
|variable2
|result_if_true
|result_if_false
}}

...and it'd spit out the result for you, based on the variables you fed it. The variables don't have to be anything in particular, so they could be any ol' string.

An example might look like:

{{if equal|a|b|c|d}}

which would spit out d, since a and b are not equal. On the other hand, with

{{if equal|a|a|c|d}}

you'd get c, since a equals itself.