Nullop

From EDukeWiki
Revision as of 17:57, 9 January 2013 by Hendricks266 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

nullop

Null operation. Use this instead of empty braces to signify doing nothing, immediately followed by else and code to run if the if condition returns false. If you are not using an else, remove nullop and the if condition completely.

Instead of ifpdistl 1024 { } else killit, do ifpdistl 1024 nullop else killit.