Category:If conditions: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
If conditions evaluate the specified statement, and run code based on the returned value of the evaluation. If conditions are boolean (true or false), and may be strung together.
Example code:
[[ifdead]] { [[spawn]] BLOODPOOL [[killit]] }
If conditions may be used in conjunction with an [[else]].
[[Category:All commands]]
[[Category:All commands]]

Revision as of 19:38, 24 September 2005

If conditions evaluate the specified statement, and run code based on the returned value of the evaluation. If conditions are boolean (true or false), and may be strung together.

Example code:

ifdead { spawn BLOODPOOL killit }

If conditions may be used in conjunction with an else.